summaryrefslogtreecommitdiff
path: root/src/ui/frames.h
diff options
context:
space:
mode:
authorStefano Karapetsas <[email protected]>2014-03-07 00:00:39 +0100
committerStefano Karapetsas <[email protected]>2014-03-07 00:00:39 +0100
commit2510c85209f2017b9e8f99bf55bf0919415c3b0b (patch)
tree9a63d0f240cf8aaf3fbd08d02b518d4f6e4ec15e /src/ui/frames.h
parent935f9d238557d34a6a4fb866f79c374ad9269551 (diff)
parent2425d611fccb0fa43cfd85a967d41d0777ecd353 (diff)
downloadmarco-2510c85209f2017b9e8f99bf55bf0919415c3b0b.tar.bz2
marco-2510c85209f2017b9e8f99bf55bf0919415c3b0b.tar.xz
Merge pull request #93 from dnk/square
gtk3: remove always on top square at 0x0-200x200
Diffstat (limited to 'src/ui/frames.h')
-rw-r--r--src/ui/frames.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/ui/frames.h b/src/ui/frames.h
index b1d178ad..54c7146a 100644
--- a/src/ui/frames.h
+++ b/src/ui/frames.h
@@ -89,7 +89,11 @@ struct _MetaUIFrame
struct _MetaFrames
{
+#if GTK_CHECK_VERSION (3, 0, 0)
+ GtkInvisible parent_instance;
+#else
GtkWindow parent_instance;
+#endif
GHashTable *text_heights;
@@ -107,8 +111,11 @@ struct _MetaFrames
struct _MetaFramesClass
{
+#if GTK_CHECK_VERSION (3, 0, 0)
+ GtkInvisibleClass parent_class;
+#else
GtkWindowClass parent_class;
-
+#endif
};
GType meta_frames_get_type (void) G_GNUC_CONST;