diff options
author | Michele Calgaro <[email protected]> | 2024-01-05 10:21:25 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-07 19:43:32 +0900 |
commit | 498895cfde9bb141db091b20fe897e0829a171e3 (patch) | |
tree | 450d3b01856e3ded26601fcbcaeb6845b654e4e7 /systemsettings/modulesview.cpp | |
parent | f614f05c1aff2549c551e33fa46f3e89c614d201 (diff) | |
download | tde-systemsettings-498895cfde9bb141db091b20fe897e0829a171e3.tar.gz tde-systemsettings-498895cfde9bb141db091b20fe897e0829a171e3.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit ae979b35ee81e4a169564225f17aac43f5f5e328)
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 |