diff options
Diffstat (limited to 'src/svnfrontend/svnlogdlgimp.cpp')
-rw-r--r-- | src/svnfrontend/svnlogdlgimp.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/svnfrontend/svnlogdlgimp.cpp b/src/svnfrontend/svnlogdlgimp.cpp index d3dbb2d..b408610 100644 --- a/src/svnfrontend/svnlogdlgimp.cpp +++ b/src/svnfrontend/svnlogdlgimp.cpp @@ -49,7 +49,7 @@ const char* SvnLogDlgImp::groupName = "log_dialog_size"; class LogListViewItem:public KListViewItem { public: - LogListViewItem (KListView *tqparent,const svn::LogEntry&); + LogListViewItem (KListView *parent,const svn::LogEntry&); virtual int compare( TQListViewItem* i, int col, bool ascending ) const; static const int COL_MARKER,COL_REV,COL_AUTHOR,COL_DATE,COL_MSG; @@ -80,7 +80,7 @@ const int LogListViewItem::COL_MSG = 4; class LogChangePathItem:public KListViewItem { public: - LogChangePathItem(KListView*tqparent,const svn::LogChangePathEntry&); + LogChangePathItem(KListView*parent,const svn::LogChangePathEntry&); virtual ~LogChangePathItem(){} TQChar action() const{return _action;} @@ -94,8 +94,8 @@ protected: svn_revnum_t _revision; }; -LogListViewItem::LogListViewItem(KListView*_tqparent,const svn::LogEntry&_entry) - : KListViewItem(_tqparent),_realName(TQString()) +LogListViewItem::LogListViewItem(KListView*_parent,const svn::LogEntry&_entry) + : KListViewItem(_parent),_realName(TQString()) { setMultiLinesEnabled(false); _revision=_entry.revision; @@ -143,8 +143,8 @@ void LogListViewItem::showChangedEntries(KListView*where) } } -LogChangePathItem::LogChangePathItem(KListView*tqparent,const svn::LogChangePathEntry&e) - :KListViewItem(tqparent) +LogChangePathItem::LogChangePathItem(KListView*parent,const svn::LogChangePathEntry&e) + :KListViewItem(parent) { _action = TQChar(e.action); setText(0,_action); @@ -190,8 +190,8 @@ bool LogListViewItem::isParent(const TQString&_par,const TQString&tar) return tar.startsWith(par); } -SvnLogDlgImp::SvnLogDlgImp(SvnActions*ac,TQWidget *tqparent, const char *name,bool modal) - :SvnLogDialogData(tqparent, name,modal),_name("") +SvnLogDlgImp::SvnLogDlgImp(SvnActions*ac,TQWidget *parent, const char *name,bool modal) + :SvnLogDialogData(parent, name,modal),_name("") { m_LogView->setSorting(LogListViewItem::COL_REV); m_LogView->setSortOrder(TQt::Descending); |