diff options
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shortcuts-view-model.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index e500740bb6..9d52e8fccd 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,5 +1,10 @@ 2001-06-29 Christopher James Lahey <clahey@ximian.com> + * e-shortcuts-view-model.c (load_all_shortcuts_into_model): + Replaced GList with GSList here to fix a type mismatch. + +2001-06-29 Christopher James Lahey <clahey@ximian.com> + * Makefile.am (INCLUDES): Changed $(datadir)/evolution/etspec to "$(etspecdir)" here. diff --git a/shell/e-shortcuts-view-model.c b/shell/e-shortcuts-view-model.c index 0ee2c2011f..6a171ff949 100644 --- a/shell/e-shortcuts-view-model.c +++ b/shell/e-shortcuts-view-model.c @@ -117,7 +117,7 @@ static void load_all_shortcuts_into_model (EShortcutsViewModel *shortcuts_view_model) { EShortcutsViewModelPrivate *priv; - GList *group_titles; + GSList *group_titles; GSList *p; int group_num; |