From 97ea83f8b23cc80320874b97b671c736a83c378a Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 30 Dec 2023 16:28:59 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro --- src/app/kipiinterface.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/app/kipiinterface.cpp') 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())); } -- cgit v1.2.1