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/gvcore/imageviewcontroller.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'src/gvcore/imageviewcontroller.cpp') diff --git a/src/gvcore/imageviewcontroller.cpp b/src/gvcore/imageviewcontroller.cpp index 03e81dc..b2e9c31 100644 --- a/src/gvcore/imageviewcontroller.cpp +++ b/src/gvcore/imageviewcontroller.cpp @@ -293,22 +293,22 @@ ImageViewController::ImageViewController(TQWidget* parent, Document* document, T d->mFullScreen=false; d->mFullScreenBar=0; - connect(d->mDocument,TQT_SIGNAL(loaded(const KURL&)), - this,TQT_SLOT(slotLoaded()) ); + connect(d->mDocument,TQ_SIGNAL(loaded(const KURL&)), + this,TQ_SLOT(slotLoaded()) ); - connect(d->mImageView, TQT_SIGNAL(requestContextMenu(const TQPoint&)), - this, TQT_SLOT(openImageViewContextMenu(const TQPoint&)) ); + connect(d->mImageView, TQ_SIGNAL(requestContextMenu(const TQPoint&)), + this, TQ_SLOT(openImageViewContextMenu(const TQPoint&)) ); - connect(d->mImageView, TQT_SIGNAL(requestHintDisplay(const TQString&)), - this, TQT_SIGNAL(requestHintDisplay(const TQString&)) ); + connect(d->mImageView, TQ_SIGNAL(requestHintDisplay(const TQString&)), + this, TQ_SIGNAL(requestHintDisplay(const TQString&)) ); - connect(d->mAutoHideTimer,TQT_SIGNAL(timeout()), - this,TQT_SLOT(slotAutoHide()) ); + connect(d->mAutoHideTimer,TQ_SIGNAL(timeout()), + this,TQ_SLOT(slotAutoHide()) ); // Forward Image view signals - connect(d->mImageView, TQT_SIGNAL(selectPrevious()), TQT_SIGNAL(selectPrevious()) ); - connect(d->mImageView, TQT_SIGNAL(selectNext()), TQT_SIGNAL(selectNext()) ); - connect(d->mImageView, TQT_SIGNAL(doubleClicked()), TQT_SIGNAL(doubleClicked()) ); + connect(d->mImageView, TQ_SIGNAL(selectPrevious()), TQ_SIGNAL(selectPrevious()) ); + connect(d->mImageView, TQ_SIGNAL(selectNext()), TQ_SIGNAL(selectNext()) ); + connect(d->mImageView, TQ_SIGNAL(doubleClicked()), TQ_SIGNAL(doubleClicked()) ); } -- cgit v1.2.3