[maemo-commits] [maemo-commits] r15309 - in projects/haf/trunk/hildon-desktop: . doc/libhildondesktop/tmpl src
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Wed Mar 19 13:03:32 EET 2008
- Previous message: [maemo-commits] r15308 - in projects/haf/trunk/hildon-desktop: . libhildondesktop
- Next message: [maemo-commits] r15310 - in projects/haf/trunk/hildon-desktop: . libhildonwm
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: jobi Date: 2008-03-19 13:03:31 +0200 (Wed, 19 Mar 2008) New Revision: 15309 Modified: projects/haf/trunk/hildon-desktop/ChangeLog projects/haf/trunk/hildon-desktop/doc/libhildondesktop/tmpl/hildon-desktop-item.sgml projects/haf/trunk/hildon-desktop/src/hd-select-plugins-dialog.c Log: 2008-03-19 Johan Bilien <johan.bilien at nokia.com> * src/hd-select-plugins-dialog.c (hd_select_plugins_dialog_get_store): fixed the double free of a GError. Modified: projects/haf/trunk/hildon-desktop/ChangeLog =================================================================== --- projects/haf/trunk/hildon-desktop/ChangeLog 2008-03-19 11:00:42 UTC (rev 15308) +++ projects/haf/trunk/hildon-desktop/ChangeLog 2008-03-19 11:03:31 UTC (rev 15309) @@ -1,3 +1,8 @@ +2008-03-19 Johan Bilien <johan.bilien at nokia.com> + + * src/hd-select-plugins-dialog.c (hd_select_plugins_dialog_get_store): + fixed the double free of a GError. + 2008-03-19 Lucas Rocha <lucas.rocha at nokia.com> * libhildondesktop/hildon-desktop-item.[ch]: move new properties of @@ -6,11 +11,11 @@ 2008-03-13 Lucas Rocha <lucas.rocha at nokia.com> - Added support for having several instances of the same type of plugins + Added support for having several instances of the same type of plugins with different configuration or content. * src/hd-config.h: added entries for new keys X-Temporary and - X-Resource. + X-Resource. * src/hd-plugin-manager.c (hd_plugin_manager_sync): check if the plugins is marked as temporary. Is so, remove the .desktop accordingly. @@ -18,7 +23,8 @@ (hd_plugin_loader_default_open_module): load resource and temporary keys into respective object properties for future usage. * libhildondesktop/hildon-desktop-item.[ch] - (hildon_desktop_item_get_resource): accessor method for plugin's resource. + (hildon_desktop_item_get_resource): accessor method for plugin's + resource. (hildon_desktop_home_class_init, hildon_desktop_item_get_property, hildon_desktop_item_set_property): new GObject properties "resource" and "temporary". The former to be used by plugins to identify what @@ -28,12 +34,12 @@ 2008-02-25 Lucas Rocha <lucas.rocha at nokia.com> - * src/hd-desktop.c (hd_desktop_plugin_list_to_conf), + * src/hd-desktop.c (hd_desktop_plugin_list_to_conf), src/hd-home-window.c (hd_home_window_background, hd_home_window_screen_off), libhildondesktop/hildon-home-area.c, - libhildonwm/hd-wm.c: several small fixed in order to cleanly build - on 64 bit architectures. - Patch from Bill Filler <bill.filler at canonical.com>. + libhildonwm/hd-wm.c: several small fixed in order to cleanly build + on 64 bit architectures. + Patch from Bill Filler <bill.filler at canonical.com>. 2008-02-20 Lucas Rocha <lucas.rocha at nokia.com> Modified: projects/haf/trunk/hildon-desktop/doc/libhildondesktop/tmpl/hildon-desktop-item.sgml =================================================================== --- projects/haf/trunk/hildon-desktop/doc/libhildondesktop/tmpl/hildon-desktop-item.sgml 2008-03-19 11:00:42 UTC (rev 15308) +++ projects/haf/trunk/hildon-desktop/doc/libhildondesktop/tmpl/hildon-desktop-item.sgml 2008-03-19 11:03:31 UTC (rev 15309) @@ -61,6 +61,16 @@ </para> +<!-- ##### ARG HildonDesktopItem:resource ##### --> +<para> + +</para> + +<!-- ##### ARG HildonDesktopItem:temporary ##### --> +<para> + +</para> + <!-- ##### FUNCTION hildon_desktop_item_get_widget ##### --> <para> Modified: projects/haf/trunk/hildon-desktop/src/hd-select-plugins-dialog.c =================================================================== --- projects/haf/trunk/hildon-desktop/src/hd-select-plugins-dialog.c 2008-03-19 11:00:42 UTC (rev 15308) +++ projects/haf/trunk/hildon-desktop/src/hd-select-plugins-dialog.c 2008-03-19 11:03:31 UTC (rev 15309) @@ -158,7 +158,7 @@ if (!dir) { - g_error_free (error); + g_clear_error (&error); continue; }
- Previous message: [maemo-commits] r15308 - in projects/haf/trunk/hildon-desktop: . libhildondesktop
- Next message: [maemo-commits] r15310 - in projects/haf/trunk/hildon-desktop: . libhildonwm
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]