summaryrefslogtreecommitdiff
path: root/pluma/pluma-history-entry.h
diff options
context:
space:
mode:
authorStefano Karapetsas <[email protected]>2013-10-30 00:56:56 +0100
committerStefano Karapetsas <[email protected]>2013-10-30 00:56:56 +0100
commit7f0ccea48196a0da9523db3d566ee8020cd742a1 (patch)
tree4a66f87edcc70ca3949c750148df218c9a41ba28 /pluma/pluma-history-entry.h
parent5f87f646777bf5b09610bbc6eed8fafd007f34c6 (diff)
downloadpluma-7f0ccea48196a0da9523db3d566ee8020cd742a1.tar.bz2
pluma-7f0ccea48196a0da9523db3d566ee8020cd742a1.tar.xz
pluma: Add GTK3 support
Diffstat (limited to 'pluma/pluma-history-entry.h')
-rw-r--r--pluma/pluma-history-entry.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/pluma/pluma-history-entry.h b/pluma/pluma-history-entry.h
index 9e2eb0bb..eba621f9 100644
--- a/pluma/pluma-history-entry.h
+++ b/pluma/pluma-history-entry.h
@@ -48,12 +48,20 @@ typedef struct _PlumaHistoryEntryPrivate PlumaHistoryEntryPrivate;
struct _PlumaHistoryEntryClass
{
+#if GTK_CHECK_VERSION (3, 0, 0)
+ GtkComboBoxTextClass parent_class;
+#else
GtkComboBoxEntryClass parent_class;
+#endif
};
struct _PlumaHistoryEntry
{
+#if GTK_CHECK_VERSION (3, 0, 0)
+ GtkComboBoxText parent_instance;
+#else
GtkComboBoxEntry parent_instance;
+#endif
PlumaHistoryEntryPrivate *priv;
};