summaryrefslogtreecommitdiff
path: root/src/caja-query-editor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/caja-query-editor.h')
-rw-r--r--src/caja-query-editor.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/caja-query-editor.h b/src/caja-query-editor.h
index 8a7f71b9..2a443624 100644
--- a/src/caja-query-editor.h
+++ b/src/caja-query-editor.h
@@ -45,13 +45,21 @@ typedef struct CajaQueryEditorDetails CajaQueryEditorDetails;
typedef struct CajaQueryEditor
{
+#if GTK_CHECK_VERSION (3, 0, 0)
+ GtkBox parent;
+#else
GtkVBox parent;
+#endif
CajaQueryEditorDetails *details;
} CajaQueryEditor;
typedef struct
{
+#if GTK_CHECK_VERSION (3, 0, 0)
+ GtkBoxClass parent_class;
+#else
GtkVBoxClass parent_class;
+#endif
void (* changed) (CajaQueryEditor *editor,
CajaQuery *query,