diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2008-12-19 05:41:00 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-12-19 05:41:00 +0800 |
commit | 2a771c37303b4d56e7c7462c1e7dec68b4508293 (patch) | |
tree | b7266162b2cf2d88e10d44ee210a881ad7f257db /mail/em-subscribe-editor.c | |
parent | 085aca4a852917a1278440a86fae21111bd8fd9d (diff) | |
download | gsoc2013-evolution-2a771c37303b4d56e7c7462c1e7dec68b4508293.tar.gz gsoc2013-evolution-2a771c37303b4d56e7c7462c1e7dec68b4508293.tar.zst gsoc2013-evolution-2a771c37303b4d56e7c7462c1e7dec68b4508293.zip |
Implement yet more mail actions.
svn path=/branches/kill-bonobo/; revision=36918
Diffstat (limited to 'mail/em-subscribe-editor.c')
-rw-r--r-- | mail/em-subscribe-editor.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mail/em-subscribe-editor.c b/mail/em-subscribe-editor.c index 3eb738cd8d..548029e0ba 100644 --- a/mail/em-subscribe-editor.c +++ b/mail/em-subscribe-editor.c @@ -786,7 +786,8 @@ window_size_allocate (GtkWidget *widget, GtkAllocation *allocation) g_object_unref (gconf); } -GtkDialog *em_subscribe_editor_new(void) +GtkWidget * +em_subscribe_editor_new(void) { EMSubscribeEditor *se; EAccountList *accounts; @@ -890,5 +891,5 @@ GtkDialog *em_subscribe_editor_new(void) gtk_window_set_default_size ((GtkWindow *) se->dialog, window_size.width, window_size.height); g_signal_connect (se->dialog, "size-allocate", G_CALLBACK (window_size_allocate), NULL); - return se->dialog; + return GTK_WIDGET (se->dialog); } |