diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-28 21:15:50 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-01 20:33:17 +0900 |
| commit | 677dae3bd35bd025d338292a296632d3d2f183e4 (patch) | |
| tree | a5a9e2839e3a8045686adf8f52a02e4a6b0eb740 /src/modules/spaste/controller.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 <michele.calgaro@yahoo.it>
(cherry picked from commit 209ac1e561619ff446be4b3411ed74e59fff168e)
Diffstat (limited to 'src/modules/spaste/controller.cpp')
| -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 bebb969..2c4f376 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; } |
