aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2010-02-11 03:14:43 +0800
committerXavier Claessens <xclaesse@gmail.com>2010-02-11 03:14:43 +0800
commit1c1c28d84322625bcd83aae9e705c00bbc2095d6 (patch)
treed82e7d606d2824f442b2773aadfeef197f88b621 /src
parentd6d5fd2192dccbd51b83303dbbcd5cf83db66574 (diff)
parent41f9f0a717f8519cf8c69cb043198980fe503ebc (diff)
downloadgsoc2013-empathy-1c1c28d84322625bcd83aae9e705c00bbc2095d6.tar
gsoc2013-empathy-1c1c28d84322625bcd83aae9e705c00bbc2095d6.tar.gz
gsoc2013-empathy-1c1c28d84322625bcd83aae9e705c00bbc2095d6.tar.bz2
gsoc2013-empathy-1c1c28d84322625bcd83aae9e705c00bbc2095d6.tar.lz
gsoc2013-empathy-1c1c28d84322625bcd83aae9e705c00bbc2095d6.tar.xz
gsoc2013-empathy-1c1c28d84322625bcd83aae9e705c00bbc2095d6.tar.zst
gsoc2013-empathy-1c1c28d84322625bcd83aae9e705c00bbc2095d6.zip
Merge branch 'menu'
Diffstat (limited to 'src')
-rw-r--r--src/empathy-debug-window.c2
-rw-r--r--src/empathy-map-view.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/empathy-debug-window.c b/src/empathy-debug-window.c
index e411fcd73..da2c0e079 100644
--- a/src/empathy-debug-window.c
+++ b/src/empathy-debug-window.c
@@ -889,6 +889,8 @@ debug_window_show_menu (gpointer user_data)
gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL,
data->button, data->time);
+ g_object_ref_sink (menu);
+ g_object_unref (menu);
g_slice_free (MenuPopupData, user_data);
diff --git a/src/empathy-map-view.c b/src/empathy-map-view.c
index b7b37549f..fd6106c95 100644
--- a/src/empathy-map-view.c
+++ b/src/empathy-map-view.c
@@ -175,6 +175,8 @@ marker_clicked_cb (ChamplainMarker *marker,
gtk_widget_show (menu);
gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL,
event->button, event->time);
+ g_object_ref_sink (menu);
+ g_object_unref (menu);
return FALSE;
}