summaryrefslogtreecommitdiff
path: root/src/eom-properties-dialog.h
diff options
context:
space:
mode:
authorFelix Riemann <[email protected]>2014-03-12 21:15:42 +0100
committerVictor Kareh <[email protected]>2018-08-01 15:55:49 -0400
commit068315f61f962088787d2858335cc4f6b5c7d534 (patch)
treef6cae6c94910a76aa5c65c77787146d5c9009592 /src/eom-properties-dialog.h
parent734ad19697a8b0cab3dd4530f4ef31cc9981bed6 (diff)
downloadeom-068315f61f962088787d2858335cc4f6b5c7d534.tar.bz2
eom-068315f61f962088787d2858335cc4f6b5c7d534.tar.xz
EomPropertiesDialog: Convert to GtkBuilder template
origin commit: https://gitlab.gnome.org/GNOME/eog/commit/a8343a6
Diffstat (limited to 'src/eom-properties-dialog.h')
-rw-r--r--src/eom-properties-dialog.h13
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);