diff options
author | Rodney Dawes <dobey@src.gnome.org> | 2003-01-15 01:29:22 +0800 |
---|---|---|
committer | Rodney Dawes <dobey@src.gnome.org> | 2003-01-15 01:29:22 +0800 |
commit | 8064872a9db122ecea76fac4ba72e30666f8d084 (patch) | |
tree | 752b2849ee3e07cd2bbc78693a2e5dc584089b61 /tests | |
parent | 5513846c31d1e0004e9ad1d65dca9efd929b16e2 (diff) | |
download | gsoc2013-evolution-8064872a9db122ecea76fac4ba72e30666f8d084.tar.gz gsoc2013-evolution-8064872a9db122ecea76fac4ba72e30666f8d084.tar.zst gsoc2013-evolution-8064872a9db122ecea76fac4ba72e30666f8d084.zip |
Switch to using GtkPaned instead of EPaned for GTK2
svn path=/trunk/; revision=19444
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ui-tests/message-browser.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/tests/ui-tests/message-browser.c b/tests/ui-tests/message-browser.c index d4c4b31646..d4caad4ebb 100644 --- a/tests/ui-tests/message-browser.c +++ b/tests/ui-tests/message-browser.c @@ -36,8 +36,6 @@ #include <libgnorba/gnorba.h> #include <bonobo/bonobo-stream-memory.h> -#include <widgets/e-paned/e-hpaned.h> - static void print_usage_and_quit() { @@ -793,15 +791,15 @@ main (int argc, char *argv[]) } } - hpane = e_hpaned_new(); + hpane = gtk_hpaned_new(); /* add the tree control view of the message*/ tree_ctrl_window = get_message_tree_ctrl (message); - e_paned_add1 (E_PANED (hpane), tree_ctrl_window); + gtk_paned_add1 (GTK_PANED (hpane), tree_ctrl_window); /* add the HTML view of the message */ html_window = get_gtk_html_window (message); - e_paned_add2 (E_PANED (hpane), html_window); + gtk_paned_add2 (GTK_PANED (hpane), html_window); /* rock n roll */ gnome_app_set_contents (GNOME_APP (app), |