diff options
author | Michele Calgaro <[email protected]> | 2024-01-02 11:38:29 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-05 17:30:01 +0900 |
commit | 9c57237885c152de17e98d12227a706a158708d0 (patch) | |
tree | 4a0e5ac5fb306e1e4b8ddb5436ca595722be17ae /src/standardscandialog.cpp | |
parent | 3dbd1166c53e8db554a4b6c8b67e7d91a78aab00 (diff) | |
download | tderadio-9c57237885c152de17e98d12227a706a158708d0.tar.gz tderadio-9c57237885c152de17e98d12227a706a158708d0.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 269551cf8e80ed83b626bb793f0f9f15b5f2809c)
Diffstat (limited to 'src/standardscandialog.cpp')
-rw-r--r-- | src/standardscandialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/standardscandialog.cpp b/src/standardscandialog.cpp index 32f1138..d352665 100644 --- a/src/standardscandialog.cpp +++ b/src/standardscandialog.cpp @@ -34,7 +34,7 @@ StandardScanDialog::StandardScanDialog(TQWidget *parent) m_oldStation(NULL), m_ignorePower(false) { - TQObject::connect(buttonCancel, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotCancelDone())); + TQObject::connect(buttonCancel, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotCancelDone())); } |