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 | 7f29ed6ef6e81aac582f9adae13fae7de117eb44 (patch) | |
tree | a9c941917ab125b89da5894ca08b245691fd032f /systemsettings/kcmultiwidget.cpp | |
parent | 5ad8fdbf162cf819cf1c48d2ddd8aed9113ab718 (diff) | |
download | tde-systemsettings-7f29ed6ef6e81aac582f9adae13fae7de117eb44.tar.gz tde-systemsettings-7f29ed6ef6e81aac582f9adae13fae7de117eb44.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/kde-systemsettings@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'systemsettings/kcmultiwidget.cpp')
-rw-r--r-- | systemsettings/kcmultiwidget.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/systemsettings/kcmultiwidget.cpp b/systemsettings/kcmultiwidget.cpp index d296d7c..38e740f 100644 --- a/systemsettings/kcmultiwidget.cpp +++ b/systemsettings/kcmultiwidget.cpp @@ -237,7 +237,7 @@ void KCMultiWidget::addModule(const TQString& path, bool withfallback) } void KCMultiWidget::addModule(const KCModuleInfo& moduleinfo, - TQStringList tqparentmodulenames, bool withfallback) + TQStringList parentmodulenames, bool withfallback) { if( !moduleinfo.service() ) return; @@ -253,8 +253,8 @@ void KCMultiWidget::addModule(const KCModuleInfo& moduleinfo, switch( dialogface ) { case TreeList: - tqparentmodulenames += moduleinfo.moduleName(); - page = addHBoxPage( tqparentmodulenames, moduleinfo.comment(), + parentmodulenames += moduleinfo.moduleName(); + page = addHBoxPage( parentmodulenames, moduleinfo.comment(), SmallIcon( moduleinfo.icon(), IconSize( KIcon::Small ) ) ); break; @@ -300,10 +300,10 @@ void KCMultiWidget::addModule(const KCModuleInfo& moduleinfo, { module = new KCModuleProxy( moduleinfo, withfallback, page ); - TQStringList tqparentComponents = moduleinfo.service()->property( + TQStringList parentComponents = moduleinfo.service()->property( "X-KDE-ParentComponents" ).toStringList(); moduleParentComponents.insert( module, - new TQStringList( tqparentComponents ) ); + new TQStringList( parentComponents ) ); connect(module, TQT_SIGNAL(changed(bool)), this, TQT_SLOT(clientChanged(bool))); |