From 7f29ed6ef6e81aac582f9adae13fae7de117eb44 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 9 Jul 2011 02:23:29 +0000 Subject: 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 --- systemsettings/kcmultiwidget.cpp | 10 +++++----- systemsettings/kcmultiwidget.h | 6 +++--- systemsettings/modulesview.cpp | 8 ++++---- systemsettings/modulesview.h | 2 +- 4 files changed, 13 insertions(+), 13 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))); diff --git a/systemsettings/kcmultiwidget.h b/systemsettings/kcmultiwidget.h index 78edfb4..181ba4e 100644 --- a/systemsettings/kcmultiwidget.h +++ b/systemsettings/kcmultiwidget.h @@ -90,8 +90,8 @@ public: * used for creating the module. It will be added * to the list of modules the dialog will show. * - * @param tqparentmodulenames The names of the modules that should appear as - * tqparents in the TreeList. Look at the + * @param parentmodulenames The names of the modules that should appear as + * parents in the TreeList. Look at the * KDialogBase::addPage documentation for more info * on this. * @@ -99,7 +99,7 @@ public: * in the module appearing outside the dialog. **/ void addModule(const KCModuleInfo& moduleinfo, TQStringList - tqparentmodulenames = TQStringList(), bool withfallback=false); + parentmodulenames = TQStringList(), bool withfallback=false); /** * @return the current module that is being shown. diff --git a/systemsettings/modulesview.cpp b/systemsettings/modulesview.cpp index 86eeac1..ceecf4b 100644 --- a/systemsettings/modulesview.cpp +++ b/systemsettings/modulesview.cpp @@ -98,11 +98,11 @@ ModulesView::~ModulesView() { } -void ModulesView::createRow( const TQString &tqparentPath, TQBoxLayout *boxLayout ) +void ModulesView::createRow( const TQString &parentPath, TQBoxLayout *boxLayout ) { - KServiceGroup::Ptr group = KServiceGroup::group( tqparentPath ); + KServiceGroup::Ptr group = KServiceGroup::group( parentPath ); if ( !group ){ - kdDebug() << "Invalid Group \"" << tqparentPath << "\". Check your installation."<< endl; + kdDebug() << "Invalid Group \"" << parentPath << "\". Check your installation."<< endl; return; } @@ -142,7 +142,7 @@ void ModulesView::createRow( const TQString &tqparentPath, TQBoxLayout *boxLayou boxLayout->addWidget( iconView ); // Add all the items in their proper order - TQValueList list = rootMenu->menuList( tqparentPath ); + TQValueList list = rootMenu->menuList( parentPath ); TQValueList::iterator it; for ( it = list.begin(); it != list.end(); ++it ){ if( !(*it).menu ) diff --git a/systemsettings/modulesview.h b/systemsettings/modulesview.h index f7cbcb3..53be985 100644 --- a/systemsettings/modulesview.h +++ b/systemsettings/modulesview.h @@ -94,7 +94,7 @@ private: KCModuleMenu *rootMenu; TQString menuPath; - void createRow( const TQString &tqparentPath, TQBoxLayout *tqlayout ); + void createRow( const TQString &parentPath, TQBoxLayout *tqlayout ); }; #endif // MODULESVIEW_H -- cgit v1.2.3