aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-subscribe-editor.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@src.gnome.org>2008-12-19 05:41:00 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-12-19 05:41:00 +0800
commit2a771c37303b4d56e7c7462c1e7dec68b4508293 (patch)
treeb7266162b2cf2d88e10d44ee210a881ad7f257db /mail/em-subscribe-editor.c
parent085aca4a852917a1278440a86fae21111bd8fd9d (diff)
downloadgsoc2013-evolution-2a771c37303b4d56e7c7462c1e7dec68b4508293.tar
gsoc2013-evolution-2a771c37303b4d56e7c7462c1e7dec68b4508293.tar.gz
gsoc2013-evolution-2a771c37303b4d56e7c7462c1e7dec68b4508293.tar.bz2
gsoc2013-evolution-2a771c37303b4d56e7c7462c1e7dec68b4508293.tar.lz
gsoc2013-evolution-2a771c37303b4d56e7c7462c1e7dec68b4508293.tar.xz
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.c5
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);
}