diff options
author | Michele Calgaro <[email protected]> | 2023-12-30 16:28:59 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-31 22:26:22 +0900 |
commit | f476b77d1dda2e0e45cdf065b1907215c90fccd6 (patch) | |
tree | dec65915640fe8ca8f67f9c490575d939b89d5df /src/gvcore/inputdialog.cpp | |
parent | 5eb453b778dba31ee1c5956ca9c9d6483c1cd620 (diff) | |
download | gwenview-f476b77d1dda2e0e45cdf065b1907215c90fccd6.tar.gz gwenview-f476b77d1dda2e0e45cdf065b1907215c90fccd6.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 97ea83f8b23cc80320874b97b671c736a83c378a)
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()) ); } |