diff options
Diffstat (limited to 'src/gvcore/imagesavedialog.cpp')
-rw-r--r-- | src/gvcore/imagesavedialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gvcore/imagesavedialog.cpp b/src/gvcore/imagesavedialog.cpp index 20d532d..8d524f1 100644 --- a/src/gvcore/imagesavedialog.cpp +++ b/src/gvcore/imagesavedialog.cpp @@ -97,12 +97,12 @@ ImageSaveDialog::ImageSaveDialog(KURL& url, const TQCString& imageFormat, TQWidg // Tweak the filter widget filterWidget->setEditable(false); - connect(filterWidget,TQT_SIGNAL(activated(const TQString&)), - this,TQT_SLOT(updateImageFormat(const TQString&)) ); + connect(filterWidget,TQ_SIGNAL(activated(const TQString&)), + this,TQ_SLOT(updateImageFormat(const TQString&)) ); // Call slotFilterChanged() to get the list filtered by the filter we // selected. If we don't use a single shot, it leads to a crash :-/ - TQTimer::singleShot(0,this,TQT_SLOT(slotFilterChanged())); + TQTimer::singleShot(0,this,TQ_SLOT(slotFilterChanged())); } |