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
This commit is contained in:
Christopher James Lahey
2001-06-30 02:01:44 +00:00
committed by Chris Lahey
parent abdd471509
commit e8b463223e
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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.
2001-06-29 Ettore Perazzoli <ettore@ximian.com>
* e-shortcuts-view-model.c (load_group_into_model): Updated to

View File

@ -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;