diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2009-02-11 04:20:11 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2009-02-11 04:20:11 +0800 |
commit | a793e6363be3a3f3319fb3a779589840d0c3563b (patch) | |
tree | ada392dd2bd448051b478220adb721fc9c074681 /mail/em-folder-selection-button.c | |
parent | de169b4feeeaf2013aa256ddf70276bacbd6542a (diff) | |
download | gsoc2013-evolution-a793e6363be3a3f3319fb3a779589840d0c3563b.tar.gz gsoc2013-evolution-a793e6363be3a3f3319fb3a779589840d0c3563b.tar.zst gsoc2013-evolution-a793e6363be3a3f3319fb3a779589840d0c3563b.zip |
Crash fix: There is no GtkButton.clicked() method, so don't chain up.
svn path=/branches/kill-bonobo/; revision=37242
Diffstat (limited to 'mail/em-folder-selection-button.c')
-rw-r--r-- | mail/em-folder-selection-button.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/mail/em-folder-selection-button.c b/mail/em-folder-selection-button.c index 1368fb1ed1..e078f44f16 100644 --- a/mail/em-folder-selection-button.c +++ b/mail/em-folder-selection-button.c @@ -254,9 +254,6 @@ folder_selection_button_clicked (GtkButton *button) priv = EM_FOLDER_SELECTION_BUTTON_GET_PRIVATE (button); - /* Chain up to parent's clicked() method. */ - GTK_BUTTON_CLASS (parent_class)->clicked (button); - emft = (EMFolderTree *) em_folder_tree_new_with_model (priv->model); em_folder_tree_set_multiselect (emft, priv->multiple_select); |