diff options
Diffstat (limited to 'kspread/plugins')
-rw-r--r-- | kspread/plugins/calculator/kcalc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kspread/plugins/calculator/kcalc.cpp b/kspread/plugins/calculator/kcalc.cpp index eb654706..7733cedf 100644 --- a/kspread/plugins/calculator/kcalc.cpp +++ b/kspread/plugins/calculator/kcalc.cpp @@ -1587,7 +1587,7 @@ void TQtCalculator::readSettings() TQColor tmpC(189, 255, 180); TQColor blackC(0,0,0); - KConfig *config = TDEGlobal::config(); + TDEConfig *config = TDEGlobal::config(); config->setGroup("CalcPlugin"); kcalcdefaults.forecolor = config->readColorEntry("ForeColor", &blackC); kcalcdefaults.backcolor = config->readColorEntry("BackColor", &tmpC); @@ -1606,7 +1606,7 @@ void TQtCalculator::readSettings() void TQtCalculator::writeSettings() { - KConfig *config = TDEGlobal::config(); + TDEConfig *config = TDEGlobal::config(); config->setGroup("CalcPlugin"); config->writeEntry("ForeColor",kcalcdefaults.forecolor); |