diff options
author | Radek Doulik <rodo@src.gnome.org> | 2003-02-05 03:03:02 +0800 |
---|---|---|
committer | Radek Doulik <rodo@src.gnome.org> | 2003-02-05 03:03:02 +0800 |
commit | a5e82f72f8c57fe3173a61bf52127990ad62ee73 (patch) | |
tree | b1950b9561176dcadd556b4f1bbf73d1bd7a2af9 /widgets/misc | |
parent | 9a00cb72159c2bc69f4b76fc211479ffa6f4c83f (diff) | |
download | gsoc2013-evolution-a5e82f72f8c57fe3173a61bf52127990ad62ee73.tar gsoc2013-evolution-a5e82f72f8c57fe3173a61bf52127990ad62ee73.tar.gz gsoc2013-evolution-a5e82f72f8c57fe3173a61bf52127990ad62ee73.tar.bz2 gsoc2013-evolution-a5e82f72f8c57fe3173a61bf52127990ad62ee73.tar.lz gsoc2013-evolution-a5e82f72f8c57fe3173a61bf52127990ad62ee73.tar.xz gsoc2013-evolution-a5e82f72f8c57fe3173a61bf52127990ad62ee73.tar.zst gsoc2013-evolution-a5e82f72f8c57fe3173a61bf52127990ad62ee73.zip |
updated for e scroll frame --> gtk scrolled window
svn path=/trunk/; revision=19736
Diffstat (limited to 'widgets/misc')
-rw-r--r-- | widgets/misc/e-multi-config-dialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/misc/e-multi-config-dialog.c b/widgets/misc/e-multi-config-dialog.c index 6e8a91e3fa..5411cd1413 100644 --- a/widgets/misc/e-multi-config-dialog.c +++ b/widgets/misc/e-multi-config-dialog.c @@ -391,7 +391,7 @@ init (EMultiConfigDialog *multi_config_dialog) e_table_extras_add_cell (extras, "vbox", vbox); list_e_table = e_table_scrolled_new (list_e_table_model, extras, list_e_table_spec, NULL); - e_scroll_frame_set_policy (E_SCROLL_FRAME (list_e_table), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); + gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (list_e_table), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); g_signal_connect (e_table_scrolled_get_table (E_TABLE_SCROLLED (list_e_table)), "cursor_change", G_CALLBACK (table_cursor_change_callback), multi_config_dialog); |