diff options
Diffstat (limited to 'src/optionssimple.cpp')
-rwxr-xr-x | src/optionssimple.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/optionssimple.cpp b/src/optionssimple.cpp index e2d35ae..e6f6131 100755 --- a/src/optionssimple.cpp +++ b/src/optionssimple.cpp @@ -28,7 +28,7 @@ OptionsSimple::OptionsSimple( Config* _config, OptionsDetailed* _optionsDetailed optionsDetailed = _optionsDetailed; // create an icon loader object for loading icons - KIconLoader* iconLoader = new KIconLoader(); + TDEIconLoader* iconLoader = new TDEIconLoader(); TQGridLayout *grid = new TQGridLayout( this, 3, 1, 6, 3 ); @@ -59,7 +59,7 @@ OptionsSimple::OptionsSimple( Config* _config, OptionsDetailed* _optionsDetailed ); topBox->addSpacing( 3 ); //pProfileRemove = new TDEToolBarButton( "editdelete", 1002, this, "pProfileRemove" ); - pProfileRemove = new KPushButton( iconLoader->loadIcon("editdelete",KIcon::Small), i18n("Remove"), this, "pProfileRemove" ); + pProfileRemove = new KPushButton( iconLoader->loadIcon("editdelete",TDEIcon::Small), i18n("Remove"), this, "pProfileRemove" ); pProfileRemove->hide(); TQToolTip::add( pProfileRemove, i18n("Remove the selected profile") ); topBox->addWidget( pProfileRemove, 0, TQt::AlignVCenter ); @@ -67,7 +67,7 @@ OptionsSimple::OptionsSimple( Config* _config, OptionsDetailed* _optionsDetailed this, TQT_SLOT(profileRemove()) ); //pProfileInfo = new TDEToolBarButton( "messagebox_info", 1110, this, "pProfileInfo" ); - pProfileInfo = new KPushButton( iconLoader->loadIcon("messagebox_info",KIcon::Small), i18n("Info"), this, "pProfileInfo" ); + pProfileInfo = new KPushButton( iconLoader->loadIcon("messagebox_info",TDEIcon::Small), i18n("Info"), this, "pProfileInfo" ); TQToolTip::add( pProfileInfo, i18n("Information about the selected profile") ); topBox->addWidget( pProfileInfo, 0, TQt::AlignVCenter ); connect( pProfileInfo, TQT_SIGNAL(clicked()), @@ -87,7 +87,7 @@ OptionsSimple::OptionsSimple( Config* _config, OptionsDetailed* _optionsDetailed ); topBox->addSpacing( 3 ); //pFormatInfo = new TDEToolBarButton( "messagebox_info", 1111, this, "pFormatInfo" ); - pFormatInfo = new KPushButton( iconLoader->loadIcon("messagebox_info",KIcon::Small), i18n("Info"), this, "pFormatInfo" ); + pFormatInfo = new KPushButton( iconLoader->loadIcon("messagebox_info",TDEIcon::Small), i18n("Info"), this, "pFormatInfo" ); TQToolTip::add( pFormatInfo, i18n("Information about the selected file format") ); topBox->addWidget( pFormatInfo, 0, TQt::AlignVCenter ); connect( pFormatInfo, TQT_SIGNAL(clicked()), |