diff options
Diffstat (limited to 'src/configdialogimpl.cpp')
-rw-r--r-- | src/configdialogimpl.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/configdialogimpl.cpp b/src/configdialogimpl.cpp index c52c298..9252f9b 100644 --- a/src/configdialogimpl.cpp +++ b/src/configdialogimpl.cpp @@ -20,14 +20,14 @@ #include "configdialogimpl.h" -#include <klocale.h> +#include <tdelocale.h> #include <kicondialog.h> #include <kiconloader.h> #include <kkeybutton.h> #include <kcolorbutton.h> #include <kkeydialog.h> #include <kservicegroup.h> -#include <kapplication.h> +#include <tdeapplication.h> #include <dcopclient.h> #include <ntqslider.h> @@ -54,12 +54,12 @@ ConfigDialogImpl::ConfigDialogImpl(TQWidget* parent, const char* name, WFlags fl curListView(0), mMenus(true) { - new TQListBoxPixmap(listBox,MainBarIcon("kommando",KIcon::SizeLarge),"Menu"); - new TQListBoxPixmap(listBox,MainBarIcon("configure_shortcuts",KIcon::SizeLarge),"Shortcuts"); - new TQListBoxPixmap(listBox,MainBarIcon("colors",KIcon::SizeLarge),"Appearance"); + new TQListBoxPixmap(listBox,MainBarIcon("kommando",TDEIcon::SizeLarge),"Menu"); + new TQListBoxPixmap(listBox,MainBarIcon("configure_shortcuts",TDEIcon::SizeLarge),"Shortcuts"); + new TQListBoxPixmap(listBox,MainBarIcon("colors",TDEIcon::SizeLarge),"Appearance"); listBox->setSelected(listBox->topItem(),true); - connect(kKeyButton1,SIGNAL(capturedShortcut(const KShortcut&)),this,SLOT(slotShortcutChanged(const KShortcut&)) ); + connect(kKeyButton1,SIGNAL(capturedShortcut(const TDEShortcut&)),this,SLOT(slotShortcutChanged(const TDEShortcut&)) ); addService->setPopup(new ServiceMenu(this, SLOT(slotAddService(KService*)), SLOT(slotAddServiceGroup(KServiceGroup*)), addService)); @@ -362,7 +362,7 @@ void ConfigDialogImpl::slotApplyClicked() setChanged(false); } -void ConfigDialogImpl::slotShortcutChanged(const KShortcut & cut ) +void ConfigDialogImpl::slotShortcutChanged(const TDEShortcut & cut ) { if(!KKeyChooser::checkGlobalShortcutsConflict(cut,true,this)){ kKeyButton1->setText(cut.toString()); |