diff options
author | Michele Calgaro <[email protected]> | 2023-12-28 16:37:45 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-28 16:37:45 +0900 |
commit | 11f3716a1c82b43f92dc32083101558f3ec47f27 (patch) | |
tree | 0e0a6f82ea12db7ed50ba5e068128186493d44e1 /src/queryviewdlg.cpp | |
parent | d399e3a2c6c365c540fe67bc648bacefe4cca707 (diff) | |
download | kscope-11f3716a1c82b43f92dc32083101558f3ec47f27.tar.gz kscope-11f3716a1c82b43f92dc32083101558f3ec47f27.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
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); |