diff options
author | Iain Holmes <iain@src.gnome.org> | 2000-12-14 23:46:34 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2000-12-14 23:46:34 +0800 |
commit | e347847bddce6d27a464444d143e94f6c5c4edf4 (patch) | |
tree | f382d235f6456ae52e31c5caa6bf3169858c0141 /shell | |
parent | 57c0e20fffd0599e6c72965ec567b4534fa0e585 (diff) | |
download | gsoc2013-evolution-e347847bddce6d27a464444d143e94f6c5c4edf4.tar gsoc2013-evolution-e347847bddce6d27a464444d143e94f6c5c4edf4.tar.gz gsoc2013-evolution-e347847bddce6d27a464444d143e94f6c5c4edf4.tar.bz2 gsoc2013-evolution-e347847bddce6d27a464444d143e94f6c5c4edf4.tar.lz gsoc2013-evolution-e347847bddce6d27a464444d143e94f6c5c4edf4.tar.xz gsoc2013-evolution-e347847bddce6d27a464444d143e94f6c5c4edf4.tar.zst gsoc2013-evolution-e347847bddce6d27a464444d143e94f6c5c4edf4.zip |
Change the function to have the same signature as the double click callback.
svn path=/trunk/; revision=7007
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell-folder-selection-dialog.c | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 759ff07b0d..23b2c8d0f4 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2000-12-14 Iain Holmes <iain@helixcode.com> + + * e-shell-folder-selection-dialog.c (dbl_click_cb): Modify to suit the + new double click callback signature. + 2000-12-14 Ettore Perazzoli <ettore@helixcode.com> * main.c (development_warning): Slightly updated the text for the diff --git a/shell/e-shell-folder-selection-dialog.c b/shell/e-shell-folder-selection-dialog.c index e2e57da7e4..0044d6dfdf 100644 --- a/shell/e-shell-folder-selection-dialog.c +++ b/shell/e-shell-folder-selection-dialog.c @@ -125,10 +125,14 @@ impl_destroy (GtkObject *object) static void dbl_click_cb (EStorageSetView *essv, int row, + int col, + GdkEvent *event, EShellFolderSelectionDialog *folder_selection_dialog) { EShellFolderSelectionDialogPrivate *priv; + g_return_if_fail (folder_selection_dialog != NULL); + priv = folder_selection_dialog->priv; if (check_folder_type (folder_selection_dialog)) { gtk_signal_emit (GTK_OBJECT (folder_selection_dialog), |