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.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcs/cvsservice/annotatepage.cpp b/vcs/cvsservice/annotatepage.cpp
index 98d4894e..11c9c835 100644
--- a/vcs/cvsservice/annotatepage.cpp
+++ b/vcs/cvsservice/annotatepage.cpp
@@ -94,7 +94,7 @@ void AnnotatePage::startAnnotate( const TQString pathName, const TQString revisi
//clear both the outputbuffer and the AnnotateView
m_output = "";
- ((KListView*)m_annotateView)->clear();
+ ((TDEListView*)m_annotateView)->clear();
kdDebug(9006) << "Running: " << m_cvsAnnotateJob->cvsCommand() << endl;
m_cvsAnnotateJob->execute();
@@ -209,7 +209,7 @@ void AnnotatePage::parseAnnotateOutput(TQStringList& lines)
//the selected revision is unknown to CVS
if (!notEof) {
KMessageBox::error(this, i18n("The selected revision does not exist."));
- ((KListView*)m_annotateView)->clear();
+ ((TDEListView*)m_annotateView)->clear();
return;
}
++it;