diff options
author | Michele Calgaro <[email protected]> | 2023-12-28 16:37:45 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-31 22:20:37 +0900 |
commit | b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c (patch) | |
tree | 0e0a6f82ea12db7ed50ba5e068128186493d44e1 /src/queryviewdlg.cpp | |
parent | 3fb419090fd6a53dd1529a1707710a3b0ebea5ea (diff) | |
download | kscope-b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c.tar.gz kscope-b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 11f3716a1c82b43f92dc32083101558f3ec47f27)
Diffstat (limited to 'src/queryviewdlg.cpp')
-rw-r--r-- | src/queryviewdlg.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/queryviewdlg.cpp b/src/queryviewdlg.cpp index f9ddb84..bb157e3 100644 --- a/src/queryviewdlg.cpp +++ b/src/queryviewdlg.cpp @@ -47,11 +47,11 @@ QueryViewDlg::QueryViewDlg(uint nFlags, TQWidget* pParent, m_pDriver = new QueryViewDriver(m_pView, this); // Show the dialogue when instructed by the driver - connect(m_pView, SIGNAL(needToShow()), this, SLOT(slotShow())); + connect(m_pView, TQ_SIGNAL(needToShow()), this, TQ_SLOT(slotShow())); // Propagate the lineRequested() signal from the QueryView object - connect(m_pView, SIGNAL(lineRequested(const TQString&, uint)), this, - SLOT(slotLineRequested(const TQString&, uint))); + connect(m_pView, TQ_SIGNAL(lineRequested(const TQString&, uint)), this, + TQ_SLOT(slotLineRequested(const TQString&, uint))); // Make the dialogue modal setModal(true); |