diff options
author | Dan Winship <danw@src.gnome.org> | 2000-12-16 07:30:46 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-12-16 07:30:46 +0800 |
commit | 0d17002a94d49285910074333a5c261bbf77cd63 (patch) | |
tree | 26b1aacea43ac982ea787c71860791e4f0be92d7 /mail/subscribe-dialog.c | |
parent | 1f9b8f9c4eb80dab128458f7f3e49c3a25ff5a00 (diff) | |
download | gsoc2013-evolution-0d17002a94d49285910074333a5c261bbf77cd63.tar gsoc2013-evolution-0d17002a94d49285910074333a5c261bbf77cd63.tar.gz gsoc2013-evolution-0d17002a94d49285910074333a5c261bbf77cd63.tar.bz2 gsoc2013-evolution-0d17002a94d49285910074333a5c261bbf77cd63.tar.lz gsoc2013-evolution-0d17002a94d49285910074333a5c261bbf77cd63.tar.xz gsoc2013-evolution-0d17002a94d49285910074333a5c261bbf77cd63.tar.zst gsoc2013-evolution-0d17002a94d49285910074333a5c261bbf77cd63.zip |
Update this for the new signal handler prototype. Fixes the crash on
* subscribe-dialog.c (folder_toggle_cb): Update this for the new
signal handler prototype. Fixes the crash on double-click.
svn path=/trunk/; revision=7059
Diffstat (limited to 'mail/subscribe-dialog.c')
-rw-r--r-- | mail/subscribe-dialog.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/mail/subscribe-dialog.c b/mail/subscribe-dialog.c index 3d85e265bd..0d40eff6de 100644 --- a/mail/subscribe-dialog.c +++ b/mail/subscribe-dialog.c @@ -780,9 +780,7 @@ build_tree (SubscribeDialog *sc, CamelStore *store) } static void -storage_selected_cb (ETable *table, - int row, - gpointer data) +storage_selected_cb (ETable *table, int row, gpointer data) { SubscribeDialog *sc = SUBSCRIBE_DIALOG (data); CamelStore *store = (CamelStore*)g_list_nth_data (sc->store_list, row); @@ -793,9 +791,7 @@ storage_selected_cb (ETable *table, static void -folder_toggle_cb (ETable *table, - int row, - gpointer data) +folder_toggle_cb (ETable *table, int row, int col, GdkEvent *event, gpointer data) { SubscribeDialog *sc = SUBSCRIBE_DIALOG (data); ETreePath *node = e_tree_model_node_at_row (sc->folder_model, row); |