summaryrefslogtreecommitdiffstats
path: root/src/svnfrontend/modifiedthread.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-29 16:51:28 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-29 16:51:28 +0900
commit9ebb061777b4fed6107d056528ff19932d1c0379 (patch)
treee6759e2a527bbabcd6d90e9a92adcd3b5bae738c /src/svnfrontend/modifiedthread.cpp
parent70a9b1f3fb15c9725f1ad6ba5ffa4b3c1554e97c (diff)
downloadtdesvn-9ebb061777b4fed6107d056528ff19932d1c0379.tar.gz
tdesvn-9ebb061777b4fed6107d056528ff19932d1c0379.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/svnfrontend/modifiedthread.cpp')
-rw-r--r--src/svnfrontend/modifiedthread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/svnfrontend/modifiedthread.cpp b/src/svnfrontend/modifiedthread.cpp
index dedf0e6..ca185b5 100644
--- a/src/svnfrontend/modifiedthread.cpp
+++ b/src/svnfrontend/modifiedthread.cpp
@@ -33,7 +33,7 @@ CheckModifiedThread::CheckModifiedThread(TQObject*_parent,const TQString&what,bo
m_Parent = _parent;
m_CurrentContext = new svn::Context();
m_ContextListener = new ThreadContextListener(m_Parent);
- TQObject::connect(m_ContextListener,TQT_SIGNAL(sendNotify(const TQString&)),m_Parent,TQT_SLOT(slotNotifyMessage(const TQString&)));
+ TQObject::connect(m_ContextListener,TQ_SIGNAL(sendNotify(const TQString&)),m_Parent,TQ_SLOT(slotNotifyMessage(const TQString&)));
m_CurrentContext->setListener(m_ContextListener);
m_what = what;