diff options
author | Timothy Pearson <[email protected]> | 2013-02-04 14:16:51 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-04 14:16:51 -0600 |
commit | f2bfcad7ffdd09911f282afe2a2051b3708601c9 (patch) | |
tree | ce4bebc206b6f9753745218e6a4c4368df624c16 /tdeutils/ksettings/componentsdialog.cpp | |
parent | a14eaa044240517f1f3d7eb5dacbff96fd447ada (diff) | |
download | tdelibs-f2bfcad7ffdd09911f282afe2a2051b3708601c9.tar.gz tdelibs-f2bfcad7ffdd09911f282afe2a2051b3708601c9.zip |
Rename KIcon to enhance compatibility with KDE4
Diffstat (limited to 'tdeutils/ksettings/componentsdialog.cpp')
-rw-r--r-- | tdeutils/ksettings/componentsdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeutils/ksettings/componentsdialog.cpp b/tdeutils/ksettings/componentsdialog.cpp index 9ee2d31df..50ad97a03 100644 --- a/tdeutils/ksettings/componentsdialog.cpp +++ b/tdeutils/ksettings/componentsdialog.cpp @@ -119,7 +119,7 @@ void ComponentsDialog::show() TQCheckListItem * item = new TQCheckListItem( d->listview, ( *it )->name(), TQCheckListItem::CheckBox ); if( ! ( *it )->icon().isEmpty() ) - item->setPixmap( 0, SmallIcon( ( *it )->icon(), IconSize( KIcon::Small ) ) ); + item->setPixmap( 0, SmallIcon( ( *it )->icon(), IconSize( TDEIcon::Small ) ) ); item->setOn( ( *it )->isPluginEnabled() ); d->plugininfomap[ item ] = ( *it ); } @@ -144,7 +144,7 @@ void ComponentsDialog::executed( TQListViewItem * item ) info->setPluginEnabled( checked ); //checkDependencies( info ); // show info about the component on the right - d->iconwidget->setPixmap( SmallIcon( info->icon(), KIcon::SizeLarge ) ); + d->iconwidget->setPixmap( SmallIcon( info->icon(), TDEIcon::SizeLarge ) ); d->commentwidget->setText( info->comment() ); //d->descriptionwidget->setText( info->description() ); } |