aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2003-02-07 03:40:27 +0800
committerDan Winship <danw@src.gnome.org>2003-02-07 03:40:27 +0800
commit999c4567874fb4a3c0fad5027a25b1e9203db602 (patch)
treec48d703df1f2df408887dd07239badba1fff74c1 /calendar/gui
parentbe2641bebc06358eb22f32c36b4211a1a1cfecd9 (diff)
downloadgsoc2013-evolution-999c4567874fb4a3c0fad5027a25b1e9203db602.tar
gsoc2013-evolution-999c4567874fb4a3c0fad5027a25b1e9203db602.tar.gz
gsoc2013-evolution-999c4567874fb4a3c0fad5027a25b1e9203db602.tar.bz2
gsoc2013-evolution-999c4567874fb4a3c0fad5027a25b1e9203db602.tar.lz
gsoc2013-evolution-999c4567874fb4a3c0fad5027a25b1e9203db602.tar.xz
gsoc2013-evolution-999c4567874fb4a3c0fad5027a25b1e9203db602.tar.zst
gsoc2013-evolution-999c4567874fb4a3c0fad5027a25b1e9203db602.zip
show the widget before returning it.
* gui/dialogs/event-page.c (make_timezone_entry): show the widget before returning it. svn path=/trunk/; revision=19826
Diffstat (limited to 'calendar/gui')
-rw-r--r--calendar/gui/dialogs/event-page.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/calendar/gui/dialogs/event-page.c b/calendar/gui/dialogs/event-page.c
index 5cf2024515..20a2b7b1c3 100644
--- a/calendar/gui/dialogs/event-page.c
+++ b/calendar/gui/dialogs/event-page.c
@@ -1452,5 +1452,9 @@ GtkWidget *make_timezone_entry (void);
GtkWidget *
make_timezone_entry (void)
{
- return e_timezone_entry_new ();
+ GtkWidget *w;
+
+ w = e_timezone_entry_new ();
+ gtk_widget_show (w);
+ return w;
}