diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | d7fee1a2ef53c7cab48946360cc6b83057b9a62c (patch) | |
tree | 80e016ca874c4154a009740b70340fd97c943de6 /kcm_gtk/kcmgtk.cpp | |
parent | d64f4816a5047d26f5250b28c0e01d43bcec9e90 (diff) | |
download | gtk-qt-engine-d7fee1a2ef53c7cab48946360cc6b83057b9a62c.tar.gz gtk-qt-engine-d7fee1a2ef53c7cab48946360cc6b83057b9a62c.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kcm_gtk/kcmgtk.cpp')
-rw-r--r-- | kcm_gtk/kcmgtk.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kcm_gtk/kcmgtk.cpp b/kcm_gtk/kcmgtk.cpp index 11f1405..7c4531f 100644 --- a/kcm_gtk/kcmgtk.cpp +++ b/kcm_gtk/kcmgtk.cpp @@ -65,10 +65,10 @@ K_EXPORT_COMPONENT_FACTORY( kcm_gtk, KcmGtkFactory("gtk"))*/ extern "C" { - KCModule *create_kcmgtk( TQWidget * tqparent, const char * name ) + KCModule *create_kcmgtk( TQWidget * parent, const char * name ) { KGlobal::locale()->insertCatalogue( "gtkqtengine" ); - return new KcmGtk( tqparent, "kcmgtk" ); + return new KcmGtk( parent, "kcmgtk" ); } } @@ -156,8 +156,8 @@ TQFont GtkRcParser::parseFont(TQString fontString) return ret; } -KcmGtk::KcmGtk(TQWidget *tqparent, const char *name, const TQStringList&) - : KCModule(tqparent, name), +KcmGtk::KcmGtk(TQWidget *parent, const char *name, const TQStringList&) + : KCModule(parent, name), myAboutData(0), emacsDetailsDialog(NULL), searchPathsDialog(NULL) |