summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikael Hallendal <micke@codefactory.se>2001-10-27 23:11:30 +0000
committerMikael Hallendal <hallski@src.gnome.org>2001-10-27 23:11:30 +0000
commit616ac0354b0a67f9b45d3f98225697ebf10ebbcc (patch)
treee15fb9de7cc8064e620da5e08d257cfc3ab316ac
parent7b574820505aa83431fd50168867bfeb933c4e6c (diff)
downloadyelp-616ac0354b0a67f9b45d3f98225697ebf10ebbcc.tar.gz
gnome_i18n_get_language_list returns const GList.
2001-10-28 Mikael Hallendal <micke@codefactory.se> * vfs-help-module/help-method.c (help_name_to_local_path): gnome_i18n_get_language_list returns const GList.
-rw-r--r--ChangeLog6
-rw-r--r--vfs-help-module/help-method.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 95103023..840db38f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-10-28 Mikael Hallendal <micke@codefactory.se>
+
+ * vfs-help-module/help-method.c
+ (help_name_to_local_path): gnome_i18n_get_language_list returns
+ const GList.
+
2001-10-27 Mikael Hallendal <micke@codefactory.se>
* src/yelp-view.c (yelp_view_open_uri): set the document to show
diff --git a/vfs-help-module/help-method.c b/vfs-help-module/help-method.c
index f9efd6d1..d3160d5a 100644
--- a/vfs-help-module/help-method.c
+++ b/vfs-help-module/help-method.c
@@ -382,7 +382,7 @@ static char *
help_name_to_local_path (const char *old_uri)
{
char *base_name, *new_uri, *buf;
- GList *language_list;
+ const GList *language_list;
char *new_uri_with_extension;
char *old_help;
gboolean is_toc;