diff options
Diffstat (limited to 'src/eom-properties-dialog.h')
-rw-r--r-- | src/eom-properties-dialog.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/eom-properties-dialog.h b/src/eom-properties-dialog.h index d6c8dd7..f13e9a5 100644 --- a/src/eom-properties-dialog.h +++ b/src/eom-properties-dialog.h @@ -22,7 +22,6 @@ #ifndef __EOM_PROPERTIES_DIALOG_H__ #define __EOM_PROPERTIES_DIALOG_H__ -#include "eom-dialog.h" #include "eom-image.h" #include "eom-thumb-view.h" @@ -51,21 +50,21 @@ typedef enum { } EomPropertiesDialogPage; struct _EomPropertiesDialog { - EomDialog dialog; + GtkDialog dialog; EomPropertiesDialogPrivate *priv; }; struct _EomPropertiesDialogClass { - EomDialogClass parent_class; + GtkDialogClass parent_class; }; GType eom_properties_dialog_get_type (void) G_GNUC_CONST; -GObject *eom_properties_dialog_new (GtkWindow *parent, - EomThumbView *thumbview, - GtkAction *next_image_action, - GtkAction *previous_image_action); +GtkWidget *eom_properties_dialog_new (GtkWindow *parent, + EomThumbView *thumbview, + GtkAction *next_image_action, + GtkAction *previous_image_action); void eom_properties_dialog_update (EomPropertiesDialog *prop, EomImage *image); |