diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:06:09 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:06:09 -0600 |
commit | 47bca8a908a56349637c0b91f4fc4f49f85f820f (patch) | |
tree | 56afb281e35997ab842e4c34ba21c98b4c1c6283 /src/svnfrontend/filelistviewitem.cpp | |
parent | 7143a99b4f885d13f7ab57bca4156900cabb34b8 (diff) | |
download | tdesvn-47bca8a908a56349637c0b91f4fc4f49f85f820f.tar.gz tdesvn-47bca8a908a56349637c0b91f4fc4f49f85f820f.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'src/svnfrontend/filelistviewitem.cpp')
-rw-r--r-- | src/svnfrontend/filelistviewitem.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/svnfrontend/filelistviewitem.cpp b/src/svnfrontend/filelistviewitem.cpp index a7b3cf0..3de0b26 100644 --- a/src/svnfrontend/filelistviewitem.cpp +++ b/src/svnfrontend/filelistviewitem.cpp @@ -47,7 +47,7 @@ const int FileListViewItem::COL_IS_LOCKED = 5; //const int FileListViewItem::COL_CURRENT_REV = 5; FileListViewItem::FileListViewItem(tdesvnfilelist*_parent,const svn::StatusPtr&_stat) - : KListViewItem(_parent),SvnItem(_stat), + : TDEListViewItem(_parent),SvnItem(_stat), sortChar(0), m_Ksvnfilelist(_parent) { @@ -56,7 +56,7 @@ FileListViewItem::FileListViewItem(tdesvnfilelist*_parent,const svn::StatusPtr&_ } FileListViewItem::FileListViewItem(tdesvnfilelist*_parent,FileListViewItem*_parentItem,const svn::StatusPtr&_stat) - : KListViewItem(_parentItem),SvnItem(_stat), + : TDEListViewItem(_parentItem),SvnItem(_stat), sortChar(0), m_Ksvnfilelist(_parent) { @@ -87,7 +87,7 @@ void FileListViewItem::setOpen(bool o) } m_Ksvnfilelist->setFocus(); } - KListViewItem::setOpen(o); + TDEListViewItem::setOpen(o); } void FileListViewItem::setOpenNoBlock(bool o) @@ -97,7 +97,7 @@ void FileListViewItem::setOpenNoBlock(bool o) m_Ksvnfilelist->slotItemRead(this); } } - KListViewItem::setOpen(o); + TDEListViewItem::setOpen(o); } FileListViewItem::~FileListViewItem() @@ -251,7 +251,7 @@ void FileListViewItem::paintCell(TQPainter *p, const TQColorGroup &cg, int colum { bool colors = Kdesvnsettings::colored_state(); if (!colors||m_bgColor==NONE) { - KListViewItem::paintCell(p,cg,column,width,alignment); + TDEListViewItem::paintCell(p,cg,column,width,alignment); return; } TQColorGroup _cg = cg; @@ -285,7 +285,7 @@ void FileListViewItem::paintCell(TQPainter *p, const TQColorGroup &cg, int colum _bgColor = Kdesvnsettings::color_need_lock(); break; default: - KListViewItem::paintCell(p,cg,column,width,alignment); + TDEListViewItem::paintCell(p,cg,column,width,alignment); return; break; } |