summaryrefslogtreecommitdiffstats
path: root/src/gvcore/imageviewcontroller.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gvcore/imageviewcontroller.cpp')
-rw-r--r--src/gvcore/imageviewcontroller.cpp22
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()) );
}