summaryrefslogtreecommitdiffstats
path: root/vcs/cvsservice/annotatepage.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-14 14:24:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-14 14:24:33 +0900
commit35fbd60457d1e51e6a0df5d181d1a0f00ad75a2c (patch)
treebb3c7d39dd8592f3676cbd663a3cc42c7b288b41 /vcs/cvsservice/annotatepage.cpp
parent59f10590f7686267df6e294111a2ff5661089026 (diff)
downloadtdevelop-35fbd60457d1e51e6a0df5d181d1a0f00ad75a2c.tar.gz
tdevelop-35fbd60457d1e51e6a0df5d181d1a0f00ad75a2c.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'vcs/cvsservice/annotatepage.cpp')
-rw-r--r--vcs/cvsservice/annotatepage.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcs/cvsservice/annotatepage.cpp b/vcs/cvsservice/annotatepage.cpp
index 1b23e973..9ecf8279 100644
--- a/vcs/cvsservice/annotatepage.cpp
+++ b/vcs/cvsservice/annotatepage.cpp
@@ -59,10 +59,10 @@ AnnotatePage::AnnotatePage( CvsService_stub *cvsService, TQWidget *parent, const
dialogLayout->add( LayoutWidget );
- connect( m_btnAnnotate, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotNewAnnotate()) );
- connect( m_leRevision, TQT_SIGNAL( returnPressed() ),
- m_btnAnnotate, TQT_SLOT( setFocus() ) );
+ connect( m_btnAnnotate, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotNewAnnotate()) );
+ connect( m_leRevision, TQ_SIGNAL( returnPressed() ),
+ m_btnAnnotate, TQ_SLOT( setFocus() ) );
//Nest create the AnnotateView; it will do the actual displaying
m_annotateView = new AnnotateView(this, "annotateview");