diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:04:33 -0600 |
|---|---|---|
| committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:04:33 -0600 |
| commit | 9aa2a73641f4d386c9667ac946cebfabca872940 (patch) | |
| tree | 9d6d443b7e100cbe48a8747207f7f2db1d42e141 /src/gui/itemselector.cpp | |
| parent | 0f2dc8b9f38b8cbb3cd1769173a4f3ed32a7a189 (diff) | |
| download | ktechlab-9aa2a73641f4d386c9667ac946cebfabca872940.tar.gz ktechlab-9aa2a73641f4d386c9667ac946cebfabca872940.zip | |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'src/gui/itemselector.cpp')
| -rw-r--r-- | src/gui/itemselector.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/itemselector.cpp b/src/gui/itemselector.cpp index 32e0cf6..8ddcc2a 100644 --- a/src/gui/itemselector.cpp +++ b/src/gui/itemselector.cpp @@ -31,7 +31,7 @@ #include <assert.h> ILVItem::ILVItem( TQListView* parent, const TQString &id ) - : KListViewItem( parent, 0 ) + : TDEListViewItem( parent, 0 ) { m_id = id; b_isRemovable = false; @@ -39,7 +39,7 @@ ILVItem::ILVItem( TQListView* parent, const TQString &id ) } ILVItem::ILVItem( TQListViewItem* parent, const TQString &id ) - : KListViewItem( parent, 0 ) + : TDEListViewItem( parent, 0 ) { m_id = id; b_isRemovable = false; @@ -48,7 +48,7 @@ ILVItem::ILVItem( TQListViewItem* parent, const TQString &id ) ItemSelector::ItemSelector( TQWidget *parent, const char *name ) - : KListView( parent, name ) + : TDEListView( parent, name ) { addColumn( i18n( "Component" ) ); setFullWidth(true); @@ -71,7 +71,7 @@ ItemSelector::~ItemSelector() void ItemSelector::clear() { m_categories.clear(); - KListView::clear(); + TDEListView::clear(); } |
