diff options
author | Timothy Pearson <[email protected]> | 2011-12-18 18:15:09 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-18 18:15:09 -0600 |
commit | 3eb39830ef8d807ff1538a0aa66a9b3fd711903a (patch) | |
tree | 65d77d809c10190d1591e13eaa8b02042a0d4488 /systemsettings/modulesview.cpp | |
parent | e3656c08ed309001cb7275441296682cadbeb160 (diff) | |
download | tde-systemsettings-3eb39830ef8d807ff1538a0aa66a9b3fd711903a.tar.gz tde-systemsettings-3eb39830ef8d807ff1538a0aa66a9b3fd711903a.zip |
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'systemsettings/modulesview.cpp')
-rw-r--r-- | systemsettings/modulesview.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/systemsettings/modulesview.cpp b/systemsettings/modulesview.cpp index ef920f1..ff0e0da 100644 --- a/systemsettings/modulesview.cpp +++ b/systemsettings/modulesview.cpp @@ -112,14 +112,14 @@ void ModulesView::createRow( const TQString &parentPath, TQBoxLayout *boxLayout // Heaer Icon TQLabel *icon = new TQLabel( this, "groupicon" ); icon->setPixmap( SmallIcon( group->icon() ) ); - icon->tqsetSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)1, + icon->setSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)1, (TQSizePolicy::SizeType)5, 0, 0, icon->sizePolicy().hasHeightForWidth() ) ); rowLayout->addWidget( icon ); // Header Name TQLabel *textLabel = new TQLabel( this, "groupcaption" ); textLabel->setText( group->caption() ); - textLabel->tqsetSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)7, + textLabel->setSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)7, (TQSizePolicy::SizeType)5, 0, 0, textLabel->sizePolicy().hasHeightForWidth())); TQFont textLabel_font( textLabel->font() ); textLabel_font.setBold( true ); @@ -160,7 +160,7 @@ void ModulesView::createRow( const TQString &parentPath, TQBoxLayout *boxLayout } // Force the height for those items that have two words. - iconView->setMinimumHeight( iconView->tqminimumSizeHint().height() ); + iconView->setMinimumHeight( iconView->minimumSizeHint().height() ); } void ModulesView::clearSelection() { |