summaryrefslogtreecommitdiffstats
path: root/src/modules/spaste/controller.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/spaste/controller.cpp')
-rw-r--r--src/modules/spaste/controller.cpp4
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;
}