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-31 22:26:22 +0900
commitf476b77d1dda2e0e45cdf065b1907215c90fccd6 (patch)
treedec65915640fe8ca8f67f9c490575d939b89d5df /src/app/kipiinterface.cpp
parent5eb453b778dba31ee1c5956ca9c9d6483c1cd620 (diff)
downloadgwenview-f476b77d.tar.gz
gwenview-f476b77d.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 97ea83f8b23cc80320874b97b671c736a83c378a)
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()));
}