diff options
Diffstat (limited to 'config/colordialog.cpp')
-rw-r--r-- | config/colordialog.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config/colordialog.cpp b/config/colordialog.cpp index 38279c8..3ad5504 100644 --- a/config/colordialog.cpp +++ b/config/colordialog.cpp @@ -7,8 +7,8 @@ #include <tqpixmap.h> #include <tqpushbutton.h> #include <tqstyle.h> -#include <kglobal.h> -#include <kglobalsettings.h> +#include <tdeglobal.h> +#include <tdeglobalsettings.h> #include <kcolordialog.h> #include <kiconloader.h> #include "colorpicker.h" @@ -45,7 +45,7 @@ ColorDialog::ColorDialog(TQWidget* parent, const char* name) : TQDialog( parent, TQVBoxLayout *topRight = new TQVBoxLayout(top); TQLabel *info = new TQLabel("<qt>Select custom colors or grab directly from screen.<br>Click image left to switch between items.</qt>",this); topRight->addWidget(info); - TQIconSet icon = KGlobal::iconLoader()->loadIconSet("colorpicker", KIcon::Small); + TQIconSet icon = TDEGlobal::iconLoader()->loadIconSet("colorpicker", TDEIcon::Small); buttonCP = new TQPushButton(icon, TQString::null, this); topRight->addWidget(buttonCP); TQLabel *lb = new TQLabel("From other app:",this); @@ -74,7 +74,7 @@ ColorDialog::ColorDialog(TQWidget* parent, const char* name) : TQDialog( parent, picker[High]->setColor(colorGroup().highlight()); picker[HighText]->setColor(colorGroup().highlightedText()); picker[ButText]->setColor(colorGroup().buttonText ()); - picker[Alternate]->setColor(KGlobalSettings::alternateBackgroundColor()); + picker[Alternate]->setColor(TDEGlobalSettings::alternateBackgroundColor()); for (int i = 0; i < NUMCOLORS; i++) picker[i]->blockSignals(false); // demo->repaint(false); |