diff options
-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), |