summaryrefslogtreecommitdiffstats
path: root/src/qt_style.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-01 21:04:03 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-01 21:04:03 +0000
commitaaca1f57ef3dc6f96057625a4978397bb376e570 (patch)
tree14fe35292dfdfd5a688642eec3a29760c66edb06 /src/qt_style.h
parent0a404f40f6dafde84ba50c0cfbfa8ef787aa4406 (diff)
downloadgtk-qt-engine-aaca1f57ef3dc6f96057625a4978397bb376e570.tar.gz
gtk-qt-engine-aaca1f57ef3dc6f96057625a4978397bb376e570.zip
Fix gtk-qt-engine loading failure
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1244319 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/qt_style.h')
-rw-r--r--src/qt_style.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/qt_style.h b/src/qt_style.h
index 5cd920a..606f1bd 100644
--- a/src/qt_style.h
+++ b/src/qt_style.h
@@ -1,25 +1,25 @@
#include <gtk/gtkstyle.h>
-typedef struct _TQtEngineStyle TQtEngineStyle;
-typedef struct _TQtEngineStyleClass TQtEngineStyleClass;
+typedef struct _QtEngineStyle QtEngineStyle;
+typedef struct _QtEngineStyleClass QtEngineStyleClass;
extern GType qtengine_type_style;
#define TQTENGINE_TYPE_STYLE qtengine_type_style
-#define TQTENGINE_STYLE(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), TQTENGINE_TYPE_STYLE, TQtEngineStyle))
-#define TQTENGINE_STYLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TQTENGINE_TYPE_STYLE, TQtEngineStyleClass))
+#define TQTENGINE_STYLE(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), TQTENGINE_TYPE_STYLE, QtEngineStyle))
+#define TQTENGINE_STYLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TQTENGINE_TYPE_STYLE, QtEngineStyleClass))
#define TQTENGINE_IS_STYLE(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), TQTENGINE_TYPE_STYLE))
#define TQTENGINE_IS_STYLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TQTENGINE_TYPE_STYLE))
-#define TQTENGINE_STYLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TQTENGINE_TYPE_STYLE, TQtEngineStyleClass))
+#define TQTENGINE_STYLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TQTENGINE_TYPE_STYLE, QtEngineStyleClass))
-struct _TQtEngineStyle
+struct _QtEngineStyle
{
GtkStyle parent_instance;
GdkPixmap* menuBackground;
};
-struct _TQtEngineStyleClass
+struct _QtEngineStyleClass
{
GtkStyleClass parent_class;
};