diff options
Diffstat (limited to 'e-util/e-pilot-settings.c')
-rw-r--r-- | e-util/e-pilot-settings.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/e-util/e-pilot-settings.c b/e-util/e-pilot-settings.c index 9eed8a9f79..7649f60287 100644 --- a/e-util/e-pilot-settings.c +++ b/e-util/e-pilot-settings.c @@ -114,7 +114,11 @@ init (EPilotSettings *ps) GtkWidget * e_pilot_settings_new (void) { - return g_object_new (E_TYPE_PILOT_SETTINGS, NULL); + GtkWidget *w = g_object_new (E_TYPE_PILOT_SETTINGS, NULL); + g_object_ref (w); + gtk_object_sink (GTK_OBJECT (w)); + + return w; } gboolean |