diff options
author | Slávek Banko <[email protected]> | 2013-07-31 17:12:50 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2013-07-31 17:25:03 +0200 |
commit | bfae40d567282d89db189816d672a5c6af89ca4e (patch) | |
tree | 20d9a16c77474c6062e2a69801b91decd86de78f /krecipes/src/widgets/kwidgetlistbox.cpp | |
parent | 5f9410ae910e73f8966318d1e1b9be03a5651118 (diff) | |
download | krecipes-bfae40d567282d89db189816d672a5c6af89ca4e.tar.gz krecipes-bfae40d567282d89db189816d672a5c6af89ca4e.zip |
Initial TDE conversion
Diffstat (limited to 'krecipes/src/widgets/kwidgetlistbox.cpp')
-rw-r--r-- | krecipes/src/widgets/kwidgetlistbox.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/krecipes/src/widgets/kwidgetlistbox.cpp b/krecipes/src/widgets/kwidgetlistbox.cpp index 4cdf4ab..8037886 100644 --- a/krecipes/src/widgets/kwidgetlistbox.cpp +++ b/krecipes/src/widgets/kwidgetlistbox.cpp @@ -22,7 +22,7 @@ ****************************************************************************/ #include "kwidgetlistbox.h" #include <kdebug.h> -#include <kglobalsettings.h> +#include <tdeglobalsettings.h> KWidgetListbox::KWidgetListbox(TQWidget *parent, const char *name) : TQTable(parent, name) @@ -162,19 +162,19 @@ if ( !itm){ kdDebug()<<"no widget at index "<<index<<endl; return; } /* if(index == selected()) { - itm->setPaletteBackgroundColor(KGlobalSettings::highlightColor()); - itm->setPaletteForegroundColor(KGlobalSettings::highlightedTextColor()); + itm->setPaletteBackgroundColor(TDEGlobalSettings::highlightColor()); + itm->setPaletteForegroundColor(TDEGlobalSettings::highlightedTextColor()); }*/ if(even) { - itm->setPaletteBackgroundColor(KGlobalSettings::baseColor()); - itm->setPaletteForegroundColor(KGlobalSettings::textColor()); + itm->setPaletteBackgroundColor(TDEGlobalSettings::baseColor()); + itm->setPaletteForegroundColor(TDEGlobalSettings::textColor()); } else { itm->setPaletteBackgroundColor( - KGlobalSettings::alternateBackgroundColor()); - itm->setPaletteForegroundColor(KGlobalSettings::textColor()); + TDEGlobalSettings::alternateBackgroundColor()); + itm->setPaletteForegroundColor(TDEGlobalSettings::textColor()); } } |