diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-06-30 10:01:44 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-06-30 10:01:44 +0800 |
commit | e8b463223ec8b3ca87a2d53f227a60d500a800e2 (patch) | |
tree | 5c1f2381f53e89736b955bce07626e7463296931 /shell/e-shortcuts-view-model.c | |
parent | abdd4715096a03351a2c8a21ef0cc8506f91681d (diff) | |
download | gsoc2013-evolution-e8b463223ec8b3ca87a2d53f227a60d500a800e2.tar.gz gsoc2013-evolution-e8b463223ec8b3ca87a2d53f227a60d500a800e2.tar.zst gsoc2013-evolution-e8b463223ec8b3ca87a2d53f227a60d500a800e2.zip |
Replaced GList with GSList here to fix a type mismatch.
2001-06-29 Christopher James Lahey <clahey@ximian.com>
* e-shortcuts-view-model.c (load_group_into_model): Replaced GList
with GSList here to fix a type mismatch.
svn path=/trunk/; revision=10617
Diffstat (limited to 'shell/e-shortcuts-view-model.c')
-rw-r--r-- | shell/e-shortcuts-view-model.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-shortcuts-view-model.c b/shell/e-shortcuts-view-model.c index eadf5ea9e7..0ee2c2011f 100644 --- a/shell/e-shortcuts-view-model.c +++ b/shell/e-shortcuts-view-model.c @@ -76,7 +76,7 @@ load_group_into_model (EShortcutsViewModel *shortcuts_view_model, EShortcutsViewModelPrivate *priv; EStorageSet *storage_set; GSList *shortcut_list; - GList *p; + GSList *p; priv = shortcuts_view_model->priv; |