summaryrefslogtreecommitdiffstats
path: root/src/app/kipiinterface.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-30 16:28:59 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-30 16:28:59 +0900
commit97ea83f8b23cc80320874b97b671c736a83c378a (patch)
tree8da6950abf3ecb5696ffd969bac30d6e05ce9620 /src/app/kipiinterface.cpp
parent831670cd1aa76b314b447cfa2d9c71603cbbf43e (diff)
downloadgwenview-97ea83f8b23cc80320874b97b671c736a83c378a.tar.gz
gwenview-97ea83f8b23cc80320874b97b671c736a83c378a.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/app/kipiinterface.cpp')
-rw-r--r--src/app/kipiinterface.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/app/kipiinterface.cpp b/src/app/kipiinterface.cpp
index 8c8bab3..456129e 100644
--- a/src/app/kipiinterface.cpp
+++ b/src/app/kipiinterface.cpp
@@ -123,13 +123,13 @@ KIPIInterface::KIPIInterface( TQWidget* parent, FileViewController* fileView)
d=new KIPIInterfacePrivate;
d->mFileView=fileView;
- connect(d->mFileView, TQT_SIGNAL(selectionChanged()),
- this, TQT_SLOT(slotSelectionChanged()) );
+ connect(d->mFileView, TQ_SIGNAL(selectionChanged()),
+ this, TQ_SLOT(slotSelectionChanged()) );
- connect(d->mFileView, TQT_SIGNAL(completed()),
- this, TQT_SLOT(slotDirectoryChanged()) );
+ connect(d->mFileView, TQ_SIGNAL(completed()),
+ this, TQ_SLOT(slotDirectoryChanged()) );
// delay a bit, so that it's called after loadPlugins()
- TQTimer::singleShot( 0, this, TQT_SLOT( init()));
+ TQTimer::singleShot( 0, this, TQ_SLOT( init()));
}