Revision: 2062
http://gtkpod.svn.sourceforge.net/gtkpod/?rev=2062&view=rev
Author: jcsjcs
Date: 2008-07-21 11:38:25 +0000 (Mon, 21 Jul 2008)
Log Message:
-----------
* src/misc_confirm (on_gtkpod_delete_event): return TRUE to
prevent other handlers from being called. (Tons of error
messages otherwise.)
Modified Paths:
--------------
gtkpod/trunk/ChangeLog
gtkpod/trunk/src/misc_confirm.c
Modified: gtkpod/trunk/ChangeLog
===================================================================
--- gtkpod/trunk/ChangeLog 2008-07-20 16:57:17 UTC (rev 2061)
+++ gtkpod/trunk/ChangeLog 2008-07-21 11:38:25 UTC (rev 2062)
@@ -1,3 +1,9 @@
+2008-07-21 Jorg Schuler <jcsjcs at users.sourceforge.net>
+
+ * src/misc_confirm (on_gtkpod_delete_event): return TRUE to
+ prevent other handlers from being called. (Tons of error
+ messages otherwise.)
+
2008-07-20 Paul Richardson <phantom_sf at users.sourceforge.net>
* src/display_photo.c:
Modified: gtkpod/trunk/src/misc_confirm.c
===================================================================
--- gtkpod/trunk/src/misc_confirm.c 2008-07-20 16:57:17 UTC (rev 2061)
+++ gtkpod/trunk/src/misc_confirm.c 2008-07-21 11:38:25 UTC (rev 2062)
@@ -901,7 +901,9 @@
if (ok_to_close_gtkpod ())
{
gtkpod_shutdown ();
- return FALSE;
+ /* returning FALSE to continue calling other handlers
+ causes tons of errors. */
+ return TRUE;
}
}
return TRUE; /* don't quit -- would cause numerous error messages */
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2