diff options
author | Michele Calgaro <[email protected]> | 2023-12-28 21:15:50 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-01 20:33:17 +0900 |
commit | 677dae3bd35bd025d338292a296632d3d2f183e4 (patch) | |
tree | a5a9e2839e3a8045686adf8f52a02e4a6b0eb740 /src/kvilib/system/kvi_thread.cpp | |
parent | 0066e291146de702674fb38a0a2428db405698b0 (diff) | |
download | kvirc-677dae3bd35bd025d338292a296632d3d2f183e4.tar.gz kvirc-677dae3bd35bd025d338292a296632d3d2f183e4.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 209ac1e561619ff446be4b3411ed74e59fff168e)
Diffstat (limited to 'src/kvilib/system/kvi_thread.cpp')
-rw-r--r-- | src/kvilib/system/kvi_thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kvilib/system/kvi_thread.cpp b/src/kvilib/system/kvi_thread.cpp index 306f6c75..f8404bb4 100644 --- a/src/kvilib/system/kvi_thread.cpp +++ b/src/kvilib/system/kvi_thread.cpp @@ -203,7 +203,7 @@ KviThreadManager::KviThreadManager() } m_pSn = new TQSocketNotifier(m_fd[KVI_THREAD_PIPE_SIDE_MASTER],TQSocketNotifier::Read); - connect(m_pSn,TQT_SIGNAL(activated(int)),this,TQT_SLOT(eventsPending(int))); + connect(m_pSn,TQ_SIGNAL(activated(int)),this,TQ_SLOT(eventsPending(int))); m_pSn->setEnabled(true); #endif } |