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/inputdialog.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/inputdialog.cpp')
-rw-r--r-- | src/gvcore/inputdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gvcore/inputdialog.cpp b/src/gvcore/inputdialog.cpp index 3a08d5c..b2a64f6 100644 --- a/src/gvcore/inputdialog.cpp +++ b/src/gvcore/inputdialog.cpp @@ -48,8 +48,8 @@ InputDialog::InputDialog(TQWidget* parent) setMinimumWidth(350); - connect(d->mLineEdit, TQT_SIGNAL(textChanged(const TQString&)), - this, TQT_SLOT(updateButtons()) ); + connect(d->mLineEdit, TQ_SIGNAL(textChanged(const TQString&)), + this, TQ_SLOT(updateButtons()) ); } |