diff options
author | Michele Calgaro <[email protected]> | 2023-12-30 16:28:59 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-30 16:28:59 +0900 |
commit | 97ea83f8b23cc80320874b97b671c736a83c378a (patch) | |
tree | 8da6950abf3ecb5696ffd969bac30d6e05ce9620 /src/gvcore/imagesavedialog.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 <[email protected]>
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())); } |