aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shortcuts-view-model.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-06-30 08:15:11 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-06-30 08:15:11 +0800
commit019a20555bc37540a0ad76c7ede5224c37f32106 (patch)
tree4dc046cc8be27c216f3253f51778f3361f478982 /shell/e-shortcuts-view-model.c
parent71e948a9aea155afaea86132b3bd0b1b38655984 (diff)
downloadgsoc2013-evolution-019a20555bc37540a0ad76c7ede5224c37f32106.tar
gsoc2013-evolution-019a20555bc37540a0ad76c7ede5224c37f32106.tar.gz
gsoc2013-evolution-019a20555bc37540a0ad76c7ede5224c37f32106.tar.bz2
gsoc2013-evolution-019a20555bc37540a0ad76c7ede5224c37f32106.tar.lz
gsoc2013-evolution-019a20555bc37540a0ad76c7ede5224c37f32106.tar.xz
gsoc2013-evolution-019a20555bc37540a0ad76c7ede5224c37f32106.tar.zst
gsoc2013-evolution-019a20555bc37540a0ad76c7ede5224c37f32106.zip
Change EShortcuts to use GSLists instead of GLists.
svn path=/trunk/; revision=10615
Diffstat (limited to 'shell/e-shortcuts-view-model.c')
-rw-r--r--shell/e-shortcuts-view-model.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/shell/e-shortcuts-view-model.c b/shell/e-shortcuts-view-model.c
index 69b417de9a..eadf5ea9e7 100644
--- a/shell/e-shortcuts-view-model.c
+++ b/shell/e-shortcuts-view-model.c
@@ -75,7 +75,7 @@ load_group_into_model (EShortcutsViewModel *shortcuts_view_model,
{
EShortcutsViewModelPrivate *priv;
EStorageSet *storage_set;
- GList *shortcut_list;
+ GSList *shortcut_list;
GList *p;
priv = shortcuts_view_model->priv;
@@ -110,7 +110,7 @@ load_group_into_model (EShortcutsViewModel *shortcuts_view_model,
e_shortcut_model_add_item (E_SHORTCUT_MODEL (shortcuts_view_model), group_num, -1, uri, name);
}
- e_free_string_list (shortcut_list);
+ e_free_string_slist (shortcut_list);
}
static void
@@ -118,7 +118,7 @@ load_all_shortcuts_into_model (EShortcutsViewModel *shortcuts_view_model)
{
EShortcutsViewModelPrivate *priv;
GList *group_titles;
- GList *p;
+ GSList *p;
int group_num;
priv = shortcuts_view_model->priv;
@@ -134,7 +134,7 @@ load_all_shortcuts_into_model (EShortcutsViewModel *shortcuts_view_model)
load_group_into_model (shortcuts_view_model, group_title, group_num);
}
- e_free_string_list (group_titles);
+ e_free_string_slist (group_titles);
}