summaryrefslogtreecommitdiffstats
path: root/vcs/cvsservice/annotatepage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vcs/cvsservice/annotatepage.cpp')
-rw-r--r--vcs/cvsservice/annotatepage.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/vcs/cvsservice/annotatepage.cpp b/vcs/cvsservice/annotatepage.cpp
index e044db54..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");
@@ -227,7 +227,7 @@ void AnnotatePage::parseAnnotateOutput(TQStringList& lines)
//so we pass it as TQDateTime to the AnnotateView below
TQString dateString = line.mid(23, 9);
if( !dateString.isEmpty() )
- logDate.setTime_t(KRFCDate::parseDate(dateString), Qt::UTC);
+ logDate.setTime_t(KRFCDate::parseDate(dateString), TQt::UTC);
rev = line.left(13).stripWhiteSpace();
author = line.mid(14, 8).stripWhiteSpace();