aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-folder-list.h
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2003-04-10 02:02:18 +0800
committerDan Winship <danw@src.gnome.org>2003-04-10 02:02:18 +0800
commitc70fa695ca533b2e61721345cc74e56bc29b68f1 (patch)
treecbe39d70443d8327d42a8806698345890ab1c9f8 /shell/e-folder-list.h
parent69f98ea90bcf7c12bced11a5a59bf1c4610ee96c (diff)
downloadgsoc2013-evolution-c70fa695ca533b2e61721345cc74e56bc29b68f1.tar
gsoc2013-evolution-c70fa695ca533b2e61721345cc74e56bc29b68f1.tar.gz
gsoc2013-evolution-c70fa695ca533b2e61721345cc74e56bc29b68f1.tar.bz2
gsoc2013-evolution-c70fa695ca533b2e61721345cc74e56bc29b68f1.tar.lz
gsoc2013-evolution-c70fa695ca533b2e61721345cc74e56bc29b68f1.tar.xz
gsoc2013-evolution-c70fa695ca533b2e61721345cc74e56bc29b68f1.tar.zst
gsoc2013-evolution-c70fa695ca533b2e61721345cc74e56bc29b68f1.zip
Update for e_option_menu prototype constification
* e-folder-list.c: Update for e_option_menu prototype constification svn path=/trunk/; revision=20790
Diffstat (limited to 'shell/e-folder-list.h')
-rw-r--r--shell/e-folder-list.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/shell/e-folder-list.h b/shell/e-folder-list.h
index 4259ea4a71..5e7ce3493d 100644
--- a/shell/e-folder-list.h
+++ b/shell/e-folder-list.h
@@ -77,31 +77,31 @@ typedef struct {
} EFolderListItem;
-EFolderListItem *e_folder_list_parse_xml (char *xml);
+EFolderListItem *e_folder_list_parse_xml (const char *xml);
char *e_folder_list_create_xml (EFolderListItem *items);
void e_folder_list_free_items (EFolderListItem *items);
/* Standard functions */
GtkType e_folder_list_get_type (void);
GtkWidget *e_folder_list_new (EvolutionShellClient *client,
- char *xml);
+ const char *xml);
GtkWidget *e_folder_list_construct (EFolderList *efl,
EvolutionShellClient *client,
- char *xml);
+ const char *xml);
/* data access functions */
void e_folder_list_set_items (EFolderList *efl,
EFolderListItem *items);
EFolderListItem *e_folder_list_get_items (EFolderList *efl);
void e_folder_list_set_xml (EFolderList *efl,
- char *xml);
+ const char *xml);
char *e_folder_list_get_xml (EFolderList *efl);
/* Option Menu functions */
void e_folder_list_set_option_menu_strings_from_array (EFolderList *efl,
- gchar **strings);
+ const char **strings);
void e_folder_list_set_option_menu_strings (EFolderList *efl,
- gchar *first_label,
+ const char *first_label,
...);
int e_folder_list_get_option_menu_value (EFolderList *efl);
void e_folder_list_set_option_menu_value (EFolderList *efl,