summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/rawconverter/clistviewitem.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:09:15 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:09:15 -0600
commit9f3512f9756e14e9c0a71340f6891b4a263611d3 (patch)
tree4f9e97149a32884cca6b0ceafdeab118a38fece2 /kipi-plugins/rawconverter/clistviewitem.h
parentaeb252235dc0e8ee062396fd8a04916dba7ba977 (diff)
downloadkipi-plugins-9f3512f9756e14e9c0a71340f6891b4a263611d3.tar.gz
kipi-plugins-9f3512f9756e14e9c0a71340f6891b4a263611d3.zip
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'kipi-plugins/rawconverter/clistviewitem.h')
-rw-r--r--kipi-plugins/rawconverter/clistviewitem.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kipi-plugins/rawconverter/clistviewitem.h b/kipi-plugins/rawconverter/clistviewitem.h
index 3473a1d..739f105 100644
--- a/kipi-plugins/rawconverter/clistviewitem.h
+++ b/kipi-plugins/rawconverter/clistviewitem.h
@@ -50,7 +50,7 @@ struct RawItem
CListViewItem *viewItem;
};
-class CListViewItem : public KListViewItem
+class CListViewItem : public TDEListViewItem
{
public:
@@ -59,9 +59,9 @@ public:
public:
- CListViewItem(KListView *view, const TQPixmap& pixmap,
+ CListViewItem(TDEListView *view, const TQPixmap& pixmap,
RawItem *item, TQListViewItem *after)
- : KListViewItem(view, after), rawItem(item)
+ : TDEListViewItem(view, after), rawItem(item)
{
rawItem->viewItem = this;
setThumbnail(pixmap);
@@ -94,14 +94,14 @@ protected:
{
if (m_enabled)
{
- KListViewItem::paintCell(p, cg, column, width, alignment);
+ TDEListViewItem::paintCell(p, cg, column, width, alignment);
}
else
{
TQColorGroup _cg( cg );
TQColor c = _cg.text();
_cg.setColor( TQColorGroup::Text, TQt::gray );
- KListViewItem::paintCell( p, _cg, column, width, alignment );
+ TDEListViewItem::paintCell( p, _cg, column, width, alignment );
_cg.setColor( TQColorGroup::Text, c );
}
}