diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-30 16:28:59 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-30 16:28:59 +0900 |
| commit | 97ea83f8b23cc80320874b97b671c736a83c378a (patch) | |
| tree | 8da6950abf3ecb5696ffd969bac30d6e05ce9620 /src/gvcore/imageviewcontroller.cpp | |
| parent | 831670cd1aa76b314b447cfa2d9c71603cbbf43e (diff) | |
| download | gwenview-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/gvcore/imageviewcontroller.cpp')
| -rw-r--r-- | src/gvcore/imageviewcontroller.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
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()) ); } |
