[maemo-commits] [maemo-commits] r14181 - in projects/haf/trunk/hildon-fm: . debian hildon-fm
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Fri Sep 28 15:52:20 EEST 2007
- Previous message: [maemo-commits] r14180 - in projects/haf/trunk/hildon-theme-layout-4: . rc
- Next message: [maemo-commits] r14182 - in projects/haf/trunk/hildon-desktop: . src
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: marivoll Date: 2007-09-28 15:52:17 +0300 (Fri, 28 Sep 2007) New Revision: 14181 Modified: projects/haf/trunk/hildon-fm/ChangeLog projects/haf/trunk/hildon-fm/debian/changelog projects/haf/trunk/hildon-fm/hildon-fm/hildon-file-chooser-dialog.c Log: (check_for_location_update): Free current_path (N70479). Modified: projects/haf/trunk/hildon-fm/ChangeLog =================================================================== --- projects/haf/trunk/hildon-fm/ChangeLog 2007-09-28 12:50:31 UTC (rev 14180) +++ projects/haf/trunk/hildon-fm/ChangeLog 2007-09-28 12:52:17 UTC (rev 14181) @@ -3,6 +3,7 @@ * hildon-fm/hildon-file-chooser-dialog.c (build_ui): Put the location into a HildonCaption, make it focusable and popup the change folder dialog when GDK_Enter is pressed (N68746). + (check_for_location_update): Free current_path (N70479). * hildon-fm/hildon-file-system-local-device.c (hildon_file_system_local_device_get_display_name): Get device @@ -20,7 +21,7 @@ hildon_file_system_model_folder_finished_loading): Gracefully handle the case when the node for the GtkFileFolder has been removed from the model in the mean time by doing nothing (N71163, - N71170, N71144, N71168). + N71170, N71144, N71168, N71265). 2007-09-26 Marius Vollmer <marius.vollmer at nokia.com> Modified: projects/haf/trunk/hildon-fm/debian/changelog =================================================================== --- projects/haf/trunk/hildon-fm/debian/changelog 2007-09-28 12:50:31 UTC (rev 14180) +++ projects/haf/trunk/hildon-fm/debian/changelog 2007-09-28 12:52:17 UTC (rev 14181) @@ -1,7 +1,7 @@ libhildonfm (1:1.9.41~unreleased) unstable; urgency=low * Fixes: NB#71163, NB#71170, NB#71144, NB#71168, NB#69754. - * Fixes: NB#70816, NB#68746. + * Fixes: NB#70816, NB#68746, NB#70479, NB#71265. -- Marius Vollmer <marius.vollmer at nokia.com> Tue, 25 Sep 2007 09:56:09 +0300 Modified: projects/haf/trunk/hildon-fm/hildon-fm/hildon-file-chooser-dialog.c =================================================================== --- projects/haf/trunk/hildon-fm/hildon-fm/hildon-file-chooser-dialog.c 2007-09-28 12:50:31 UTC (rev 14180) +++ projects/haf/trunk/hildon-fm/hildon-fm/hildon-file-chooser-dialog.c 2007-09-28 12:52:17 UTC (rev 14181) @@ -705,6 +705,9 @@ if (current_path && gtk_tree_path_compare (path, current_path) == 0) hildon_file_chooser_dialog_update_location_info(priv); + + if (current_path) + gtk_tree_path_free (current_path); } static gboolean
- Previous message: [maemo-commits] r14180 - in projects/haf/trunk/hildon-theme-layout-4: . rc
- Next message: [maemo-commits] r14182 - in projects/haf/trunk/hildon-desktop: . src
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]