aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-meeting-time-sel.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-03-05 12:38:41 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-03-05 20:36:23 +0800
commit2836a54dd6d61e35d1446f9a23a628064516a309 (patch)
treeb9cb2ab39212de803e935ed28957ee77e73c2d96 /calendar/gui/e-meeting-time-sel.c
parentbaa7f20333a5bbb7c8cbb3cf2ce86b57aba79ef2 (diff)
downloadgsoc2013-evolution-2836a54dd6d61e35d1446f9a23a628064516a309.tar
gsoc2013-evolution-2836a54dd6d61e35d1446f9a23a628064516a309.tar.gz
gsoc2013-evolution-2836a54dd6d61e35d1446f9a23a628064516a309.tar.bz2
gsoc2013-evolution-2836a54dd6d61e35d1446f9a23a628064516a309.tar.lz
gsoc2013-evolution-2836a54dd6d61e35d1446f9a23a628064516a309.tar.xz
gsoc2013-evolution-2836a54dd6d61e35d1446f9a23a628064516a309.tar.zst
gsoc2013-evolution-2836a54dd6d61e35d1446f9a23a628064516a309.zip
Work around recent GTK+ deprecations.
Diffstat (limited to 'calendar/gui/e-meeting-time-sel.c')
-rw-r--r--calendar/gui/e-meeting-time-sel.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/calendar/gui/e-meeting-time-sel.c b/calendar/gui/e-meeting-time-sel.c
index 9998cb2445..19a572d6d8 100644
--- a/calendar/gui/e-meeting-time-sel.c
+++ b/calendar/gui/e-meeting-time-sel.c
@@ -1653,7 +1653,11 @@ e_meeting_time_selector_on_update_free_busy (GtkWidget *button,
{
/* Make sure the menu pops down, which doesn't happen by default if
keyboard accelerators are used. */
+#if GTK_CHECK_VERSION(2,19,7)
+ if (gtk_widget_get_visible (mts->options_menu))
+#else
if (GTK_WIDGET_VISIBLE (mts->options_menu))
+#endif
gtk_menu_popdown (GTK_MENU (mts->options_menu));
e_meeting_time_selector_refresh_free_busy (mts, 0, TRUE);
@@ -1700,7 +1704,11 @@ e_meeting_time_selector_on_autopick_option_toggled (GtkWidget *button,
{
/* Make sure the menu pops down, which doesn't happen by default if
keyboard accelerators are used. */
+#if GTK_CHECK_VERSION(2,19,7)
+ if (gtk_widget_get_visible (mts->autopick_menu))
+#else
if (GTK_WIDGET_VISIBLE (mts->autopick_menu))
+#endif
gtk_menu_popdown (GTK_MENU (mts->autopick_menu));
}
@@ -2100,7 +2108,11 @@ e_meeting_time_selector_on_zoomed_out_toggled (GtkWidget *menuitem,
{
/* Make sure the menu pops down, which doesn't happen by default if
keyboard accelerators are used. */
+#if GTK_CHECK_VERSION(2,19,7)
+ if (gtk_widget_get_visible (mts->options_menu))
+#else
if (GTK_WIDGET_VISIBLE (mts->options_menu))
+#endif
gtk_menu_popdown (GTK_MENU (mts->options_menu));
e_meeting_time_selector_set_zoomed_out (mts, GTK_CHECK_MENU_ITEM (menuitem)->active);
@@ -2113,7 +2125,11 @@ e_meeting_time_selector_on_working_hours_toggled (GtkWidget *menuitem,
{
/* Make sure the menu pops down, which doesn't happen by default if
keyboard accelerators are used. */
+#if GTK_CHECK_VERSION(2,19,7)
+ if (gtk_widget_get_visible (mts->options_menu))
+#else
if (GTK_WIDGET_VISIBLE (mts->options_menu))
+#endif
gtk_menu_popdown (GTK_MENU (mts->options_menu));
e_meeting_time_selector_set_working_hours_only (mts, GTK_CHECK_MENU_ITEM (menuitem)->active);