diff options
author | Michele Calgaro <[email protected]> | 2023-12-28 21:15:50 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-01 18:03:34 +0900 |
commit | 209ac1e561619ff446be4b3411ed74e59fff168e (patch) | |
tree | 83b384cf0c4dfb918b3a4c39b4333f33e0f2f387 /src/modules/spaste | |
parent | 44846083311d49d75e8376326d29f7f34e1dae52 (diff) | |
download | kvirc-209ac1e561619ff446be4b3411ed74e59fff168e.tar.gz kvirc-209ac1e561619ff446be4b3411ed74e59fff168e.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/modules/spaste')
-rw-r--r-- | src/modules/spaste/controller.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/spaste/controller.cpp b/src/modules/spaste/controller.cpp index bebb9692..2c4f3764 100644 --- a/src/modules/spaste/controller.cpp +++ b/src/modules/spaste/controller.cpp @@ -63,7 +63,7 @@ bool SPasteController::pasteFileInit(TQString &fileName) if(m_pFile)return false; // can't paste two files at a time m_pFile = new TQFile(fileName); if(!m_pFile->open(IO_ReadOnly))return false; - connect(m_pTimer,TQT_SIGNAL(timeout()),this,TQT_SLOT(pasteFile())); + connect(m_pTimer,TQ_SIGNAL(timeout()),this,TQ_SLOT(pasteFile())); m_pTimer->start(KVI_OPTION_UINT(KviOption_uintPasteDelay)); return true; } @@ -79,7 +79,7 @@ bool SPasteController::pasteClipboardInit(void) m_pClipBuff = new TQStringList(TQStringList::split("\n",tmp,true)); m_clipBuffIterator = m_pClipBuff->begin(); } - connect(m_pTimer,TQT_SIGNAL(timeout()),this,TQT_SLOT(pasteClipboard())); + connect(m_pTimer,TQ_SIGNAL(timeout()),this,TQ_SLOT(pasteClipboard())); m_pTimer->start(KVI_OPTION_UINT(KviOption_uintPasteDelay)); return true; } |