diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell-folder-selection-dialog.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 5d2781f06f..8bd30b6f36 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2000-06-12 Michael Meeks <michael@helixcode.com> + + * e-shell-folder-selection-dialog.c: include gnome-dialog.h + (PARENT_TYPE): GNOME_TYPE_DIALOG replaced with gnome_dialog_get_type. + 2000-06-10 Ettore Perazzoli <ettore@helixcode.com> * e-shell.c (impl_Shell_user_select_folder): New, implementation diff --git a/shell/e-shell-folder-selection-dialog.c b/shell/e-shell-folder-selection-dialog.c index 1864890081..16e2c54fe6 100644 --- a/shell/e-shell-folder-selection-dialog.c +++ b/shell/e-shell-folder-selection-dialog.c @@ -26,6 +26,7 @@ #endif #include <libgnomeui/gnome-stock.h> +#include <libgnomeui/gnome-dialog.h> #include <libgnome/gnome-i18n.h> #include "e-util/e-util.h" @@ -39,7 +40,7 @@ #include "e-shell-folder-selection-dialog.h" -#define PARENT_TYPE GNOME_TYPE_DIALOG +#define PARENT_TYPE (gnome_dialog_get_type ()) static GnomeDialogClass *parent_class = NULL; struct _EShellFolderSelectionDialogPrivate { |