diff options
author | Timothy Pearson <[email protected]> | 2013-02-01 15:11:21 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-01 15:11:21 -0600 |
commit | f537c21b68e08f649b1b297bce8f3904603137e0 (patch) | |
tree | fb33065387509dea898c90022ddec9c3f8ede86d /kcontrol/input/core/themepage.cpp | |
parent | dc5f267664506a312203c26bfe9001a448b0bb0f (diff) | |
download | tdebase-f537c21b68e08f649b1b297bce8f3904603137e0.tar.gz tdebase-f537c21b68e08f649b1b297bce8f3904603137e0.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'kcontrol/input/core/themepage.cpp')
-rw-r--r-- | kcontrol/input/core/themepage.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kcontrol/input/core/themepage.cpp b/kcontrol/input/core/themepage.cpp index 558998b4e..53c33ff2b 100644 --- a/kcontrol/input/core/themepage.cpp +++ b/kcontrol/input/core/themepage.cpp @@ -60,7 +60,7 @@ ThemePage::ThemePage( TQWidget* parent, const char* name ) new TQLabel( i18n("Select the cursor theme you want to use:"), this ); // Create the theme list view - listview = new KListView( this ); + listview = new TDEListView( this ); listview->setFullWidth( true ); listview->setAllColumnsShowFocus( true ); listview->addColumn( i18n("Name") ); @@ -143,24 +143,24 @@ void ThemePage::defaults() void ThemePage::insertThemes() { - KListViewItem *item; + TDEListViewItem *item; - item = new KListViewItem( listview, i18n("Small black"), + item = new TDEListViewItem( listview, i18n("Small black"), i18n("Small black cursors"), "SmallBlack" ); item->setPixmap( 0, TQPixmap( arrow_small_black_xpm ) ); listview->insertItem( item ); - item = new KListViewItem( listview, i18n("Large black"), + item = new TDEListViewItem( listview, i18n("Large black"), i18n("Large black cursors"), "LargeBlack" ); item->setPixmap( 0, TQPixmap( arrow_large_black_xpm ) ); listview->insertItem( item ); - item = new KListViewItem( listview, i18n("Small white"), + item = new TDEListViewItem( listview, i18n("Small white"), i18n("Small white cursors"), "SmallWhite" ); item->setPixmap( 0, TQPixmap( arrow_small_white_xpm ) ); listview->insertItem( item ); - item = new KListViewItem( listview, i18n("Large white"), + item = new TDEListViewItem( listview, i18n("Large white"), i18n("Large white cursors"), "LargeWhite" ); item->setPixmap( 0, TQPixmap( arrow_large_white_xpm ) ); listview->insertItem( item ); |