diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-05 10:21:25 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-05 10:21:25 +0900 |
commit | ae979b35ee81e4a169564225f17aac43f5f5e328 (patch) | |
tree | 450d3b01856e3ded26601fcbcaeb6845b654e4e7 /systemsettings/modulesview.cpp | |
parent | d27c63f0f8d1b581be5c43f5c371eb633ccfa529 (diff) | |
download | tde-systemsettings-ae979b35ee81e4a169564225f17aac43f5f5e328.tar.gz tde-systemsettings-ae979b35ee81e4a169564225f17aac43f5f5e328.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'systemsettings/modulesview.cpp')
-rw-r--r-- | systemsettings/modulesview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/systemsettings/modulesview.cpp b/systemsettings/modulesview.cpp index 05c6f3f..8c4df03 100644 --- a/systemsettings/modulesview.cpp +++ b/systemsettings/modulesview.cpp @@ -137,8 +137,8 @@ void ModulesView::createRow( const TQString &parentPath, TQBoxLayout *boxLayout iconView->setItemsMovable( false ); iconView->setSelectionMode(TQIconView::NoSelection); groups.append( iconView ); - connect(iconView, TQT_SIGNAL( clicked( TQIconViewItem* ) ), - this, TQT_SIGNAL( itemSelected( TQIconViewItem* ) ) ); + connect(iconView, TQ_SIGNAL( clicked( TQIconViewItem* ) ), + this, TQ_SIGNAL( itemSelected( TQIconViewItem* ) ) ); boxLayout->addWidget( iconView ); // Add all the items in their proper order |