aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2002-11-25 12:59:28 +0800
committerChris Toshok <toshok@src.gnome.org>2002-11-25 12:59:28 +0800
commit98a522b22e81746773fe26ef831b0a76743cc1bb (patch)
tree89ad5d7135253bc3ad73291120522fc982373cac
parent442ed02adb1d86a177b465fa656f2148a71230b1 (diff)
downloadgsoc2013-evolution-98a522b22e81746773fe26ef831b0a76743cc1bb.tar
gsoc2013-evolution-98a522b22e81746773fe26ef831b0a76743cc1bb.tar.gz
gsoc2013-evolution-98a522b22e81746773fe26ef831b0a76743cc1bb.tar.bz2
gsoc2013-evolution-98a522b22e81746773fe26ef831b0a76743cc1bb.tar.lz
gsoc2013-evolution-98a522b22e81746773fe26ef831b0a76743cc1bb.tar.xz
gsoc2013-evolution-98a522b22e81746773fe26ef831b0a76743cc1bb.tar.zst
gsoc2013-evolution-98a522b22e81746773fe26ef831b0a76743cc1bb.zip
show the etable. (addressbook_add_server_druid): show_all before returning
2002-11-24 Chris Toshok <toshok@ximian.com> * gui/component/addressbook-config.c (query_for_supported_bases): show the etable. (addressbook_add_server_druid): show_all before returning the dialog, so the druid shows up. svn path=/trunk/; revision=18911
-rw-r--r--addressbook/ChangeLog7
-rw-r--r--addressbook/gui/component/addressbook-config.c3
2 files changed, 9 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 8fb8cec789..512b40c531 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,10 @@
+2002-11-24 Chris Toshok <toshok@ximian.com>
+
+ * gui/component/addressbook-config.c (query_for_supported_bases):
+ show the etable.
+ (addressbook_add_server_druid): show_all before returning the
+ dialog, so the druid shows up.
+
2002-11-23 Chris Toshok <toshok@ximian.com>
[ roll forward from the 1.2 branch. fixes #25540, part of #29630,
diff --git a/addressbook/gui/component/addressbook-config.c b/addressbook/gui/component/addressbook-config.c
index 68aed30a07..3cf0cd2a62 100644
--- a/addressbook/gui/component/addressbook-config.c
+++ b/addressbook/gui/component/addressbook-config.c
@@ -707,6 +707,7 @@ query_for_supported_bases (GtkWidget *button, AddressbookSourceDialog *sdialog)
dialog = glade_xml_get_widget (sdialog->gui, "supported-bases-dialog");
supported_bases_table = glade_xml_get_widget (sdialog->gui, "supported-bases-table");
+ gtk_widget_show (supported_bases_table);
selection_model = e_table_get_selection_model (e_table_scrolled_get_table (E_TABLE_SCROLLED(supported_bases_table)));
model = g_object_get_data (G_OBJECT (supported_bases_table), "model");
@@ -1089,7 +1090,7 @@ addressbook_add_server_druid (AddressbookDialog *dialog)
gtk_window_set_modal (GTK_WINDOW (sdialog->window), TRUE);
- gtk_widget_show (sdialog->window);
+ gtk_widget_show_all (sdialog->window);
return sdialog;
}