diff options
Diffstat (limited to 'src/preferencesdlg.cpp')
-rw-r--r-- | src/preferencesdlg.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/preferencesdlg.cpp b/src/preferencesdlg.cpp index 9540c73..f929383 100644 --- a/src/preferencesdlg.cpp +++ b/src/preferencesdlg.cpp @@ -26,14 +26,14 @@ ***************************************************************************/ #include <ntqlayout.h> -#include <klocale.h> +#include <tdelocale.h> #include <kiconloader.h> #include <kurlrequester.h> #include <klineedit.h> #include <ntqcheckbox.h> #include <kcolorbutton.h> -#include <kmessagebox.h> -#include <kfontrequester.h> +#include <tdemessagebox.h> +#include <tdefontrequester.h> #include "preferencesdlg.h" #include "preffrontend.h" #include "prefcolor.h" @@ -62,29 +62,29 @@ PreferencesDlg::PreferencesDlg(uint nPage, TQWidget* pParent, // Create and add the "Frontend" page pFrame = addPage(i18n("Programmes"), i18n("Paths to back-end programmes"), - KGlobal::iconLoader()->loadIcon("run", KIcon::Panel, 0, false)); + TDEGlobal::iconLoader()->loadIcon("run", TDEIcon::Panel, 0, false)); pLayout = new TQVBoxLayout(pFrame, 0, 0); m_pPrefFrontend = new PrefFrontend(pFrame); pLayout->addWidget(m_pPrefFrontend); // Create and add the "Colours" page pFrame = addPage(i18n("Colours"), i18n("Window colours"), - KGlobal::iconLoader()->loadIcon("colors", KIcon::Panel, 0, false)); + TDEGlobal::iconLoader()->loadIcon("colors", TDEIcon::Panel, 0, false)); pLayout = new TQVBoxLayout(pFrame, 0, 0); m_pPrefColor = new PrefColor(pFrame); pLayout->addWidget(m_pPrefColor); // Create and add the "Fonts" page pFrame = addPage(i18n("Fonts"), i18n("Window fonts"), - KGlobal::iconLoader()->loadIcon("fonts", KIcon::Panel, 0, false)); + TDEGlobal::iconLoader()->loadIcon("fonts", TDEIcon::Panel, 0, false)); pLayout = new TQVBoxLayout(pFrame, 0, 0); m_pPrefFont = new PrefFont(pFrame); pLayout->addWidget(m_pPrefFont); // Create and add the "Options" page pFrame = addPage(i18n("Options"), i18n("Misc. Options"), - KGlobal::iconLoader()->loadIcon("package_settings", - KIcon::Panel, 0, false)); + TDEGlobal::iconLoader()->loadIcon("package_settings", + TDEIcon::Panel, 0, false)); pLayout = new TQVBoxLayout(pFrame, 0, 0); m_pPrefOpt = new PrefOpt(pFrame); pLayout->addWidget(m_pPrefOpt); |