summaryrefslogtreecommitdiffstats
path: root/vcs/cvsservice/annotateview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vcs/cvsservice/annotateview.cpp')
-rw-r--r--vcs/cvsservice/annotateview.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/vcs/cvsservice/annotateview.cpp b/vcs/cvsservice/annotateview.cpp
index 30e80a21..597415f1 100644
--- a/vcs/cvsservice/annotateview.cpp
+++ b/vcs/cvsservice/annotateview.cpp
@@ -32,7 +32,7 @@ class AnnotateViewItem : public TQListViewItem
public:
enum { LineNumberColumn, AuthorColumn, DateColumn,ContentColumn };
- AnnotateViewItem(AnnotateView *tqparent, TQString rev, TQString author,
+ AnnotateViewItem(AnnotateView *parent, TQString rev, TQString author,
TQDateTime date, TQString content, TQString comment,
bool odd, int linenumber);
@@ -57,10 +57,10 @@ private:
const int AnnotateViewItem::BORDER = 4;
-AnnotateViewItem::AnnotateViewItem(AnnotateView *tqparent, TQString rev,
+AnnotateViewItem::AnnotateViewItem(AnnotateView *parent, TQString rev,
TQString author, TQDateTime date, TQString content, TQString comment,
bool odd, int linenumber)
- : TQListViewItem(tqparent)
+ : TQListViewItem(parent)
, m_revision(rev)
, m_author(author)
, m_content(content)
@@ -140,9 +140,9 @@ int AnnotateViewItem::width(const TQFontMetrics &fm, const TQListView *, int col
/*****************Definition of class AnnotateView ****************************/
/******************************************************************************/
-AnnotateView::AnnotateView(AnnotatePage *tqparent, const char *name)
- : KListView(tqparent, name), TQToolTip( viewport() ),
- m_page(tqparent)
+AnnotateView::AnnotateView(AnnotatePage *parent, const char *name)
+ : KListView(parent, name), TQToolTip( viewport() ),
+ m_page(parent)
{
setFrameStyle(TQFrame::WinPanel | TQFrame::Sunken);
setAllColumnsShowFocus(true);