diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
commit | 0a404f40f6dafde84ba50c0cfbfa8ef787aa4406 (patch) | |
tree | 68059710855f93361a4090d7805deab1aace4faa /src/qt_rc_style.c | |
parent | b3f402e993cca89ccb6cee3f2cda52cc2eacc39d (diff) | |
download | gtk-qt-engine-0a404f40f6dafde84ba50c0cfbfa8ef787aa4406.tar.gz gtk-qt-engine-0a404f40f6dafde84ba50c0cfbfa8ef787aa4406.zip |
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...]
tqinvalidate[...]
tqparent[...]
tqmask[...]
tqlayout[...]
tqalignment[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/qt_rc_style.c')
-rw-r--r-- | src/qt_rc_style.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qt_rc_style.c b/src/qt_rc_style.c index ba03a7f..bacf00e 100644 --- a/src/qt_rc_style.c +++ b/src/qt_rc_style.c @@ -15,7 +15,7 @@ static void qtengine_rc_style_merge (GtkRcStyle *dest, static GtkStyle *qtengine_rc_style_create_style (GtkRcStyle *rc_style); -static GtkRcStyleClass *tqparent_class; +static GtkRcStyleClass *parent_class; GType qtengine_type_rc_style = 0; @@ -47,7 +47,7 @@ static void qtengine_rc_style_class_init (TQtEngineRcStyleClass *klass) GtkRcStyleClass *rc_style_class = GTK_RC_STYLE_CLASS (klass); GObjectClass *object_class = G_OBJECT_CLASS (klass); - tqparent_class = g_type_class_peek_parent (klass); + parent_class = g_type_class_peek_parent (klass); rc_style_class->parse = qtengine_rc_style_parse; rc_style_class->merge = qtengine_rc_style_merge; @@ -88,7 +88,7 @@ static void qtengine_rc_style_merge (GtkRcStyle * dest, GtkRcStyle * src) { - tqparent_class->merge(dest, src); + parent_class->merge(dest, src); } /* Create an empty style suitable to this RC style |