summaryrefslogtreecommitdiffstats
path: root/vcs/cvsservice/annotateview.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit32b67ac0690de411b26b1d5e715b188c27442248 (patch)
tree43167816a3df6b3a877d71c9a7963ed270dcc8c9 /vcs/cvsservice/annotateview.cpp
parent330c33ab6f97b279737bf9527c9add7bb1475450 (diff)
downloadtdevelop-32b67ac0690de411b26b1d5e715b188c27442248.tar.gz
tdevelop-32b67ac0690de411b26b1d5e715b188c27442248.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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);