summaryrefslogtreecommitdiffstats
path: root/systemsettings/modulesview.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commit7f29ed6ef6e81aac582f9adae13fae7de117eb44 (patch)
treea9c941917ab125b89da5894ca08b245691fd032f /systemsettings/modulesview.cpp
parent5ad8fdbf162cf819cf1c48d2ddd8aed9113ab718 (diff)
downloadtde-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/modulesview.cpp')
-rw-r--r--systemsettings/modulesview.cpp8
1 files changed, 4 insertions, 4 deletions
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<MenuItem> list = rootMenu->menuList( tqparentPath );
+ TQValueList<MenuItem> list = rootMenu->menuList( parentPath );
TQValueList<MenuItem>::iterator it;
for ( it = list.begin(); it != list.end(); ++it ){
if( !(*it).menu )