aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/shortcut-bar/e-shortcut-bar.h
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2000-05-04 15:09:53 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2000-05-04 15:09:53 +0800
commit91310499b326bafc8da96814e2e7cdde441c539b (patch)
treea8e4dfa93eebc24e599c6ccbd39764c335c872d9 /widgets/shortcut-bar/e-shortcut-bar.h
parente6f93efbadf410e6c9dcd9b4326562b27a8cfef0 (diff)
downloadgsoc2013-evolution-91310499b326bafc8da96814e2e7cdde441c539b.tar
gsoc2013-evolution-91310499b326bafc8da96814e2e7cdde441c539b.tar.gz
gsoc2013-evolution-91310499b326bafc8da96814e2e7cdde441c539b.tar.bz2
gsoc2013-evolution-91310499b326bafc8da96814e2e7cdde441c539b.tar.lz
gsoc2013-evolution-91310499b326bafc8da96814e2e7cdde441c539b.tar.xz
gsoc2013-evolution-91310499b326bafc8da96814e2e7cdde441c539b.tar.zst
gsoc2013-evolution-91310499b326bafc8da96814e2e7cdde441c539b.zip
EIconBar/EShortcutBar constification.
svn path=/trunk/; revision=2792
Diffstat (limited to 'widgets/shortcut-bar/e-shortcut-bar.h')
-rw-r--r--widgets/shortcut-bar/e-shortcut-bar.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/widgets/shortcut-bar/e-shortcut-bar.h b/widgets/shortcut-bar/e-shortcut-bar.h
index 682967b12a..ef40c89367 100644
--- a/widgets/shortcut-bar/e-shortcut-bar.h
+++ b/widgets/shortcut-bar/e-shortcut-bar.h
@@ -96,7 +96,7 @@ GtkWidget* e_shortcut_bar_new (void);
/* Adds a new group, returning the index. */
gint e_shortcut_bar_add_group (EShortcutBar *shortcut_bar,
- gchar *group_name);
+ const gchar *group_name);
void e_shortcut_bar_remove_group (EShortcutBar *shortcut_bar,
gint group_num);
@@ -108,8 +108,8 @@ void e_shortcut_bar_set_view_type (EShortcutBar *shortcut_bar,
/* Adds a new item to a group, returning the index within the group. */
gint e_shortcut_bar_add_item (EShortcutBar *shortcut_bar,
gint group_num,
- gchar *item_url,
- gchar *item_name);
+ const gchar *item_url,
+ const gchar *item_name);
void e_shortcut_bar_start_editing_item (EShortcutBar *shortcut_bar,
gint group_num,