summaryrefslogtreecommitdiffstats
path: root/kpresenter/KPrConfig.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kpresenter/KPrConfig.cpp')
-rw-r--r--kpresenter/KPrConfig.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kpresenter/KPrConfig.cpp b/kpresenter/KPrConfig.cpp
index e6498bc3..a5cf24fe 100644
--- a/kpresenter/KPrConfig.cpp
+++ b/kpresenter/KPrConfig.cpp
@@ -351,7 +351,7 @@ KPrConfigureColorBackground::KPrConfigureColorBackground( KPrView* _view, TQWidg
void KPrConfigureColorBackground::apply()
{
KPrDocument * doc = m_pView->kPresenterDoc();
- bool tqrepaintNeeded = false;
+ bool repaintNeeded = false;
TQColor _col = bgColor->color();
if( oldBgColor != _col ) {
config->setGroup( "KPresenter Color" );
@@ -359,7 +359,7 @@ void KPrConfigureColorBackground::apply()
doc->setTxtBackCol( _col );
doc->replaceObjs();
oldBgColor=_col;
- tqrepaintNeeded = true;
+ repaintNeeded = true;
}
_col = gridColor->color();
if( oldGridColor != _col ) {
@@ -368,9 +368,9 @@ void KPrConfigureColorBackground::apply()
doc->tqrepaint( false );
doc->setGridColor( _col );
oldGridColor=_col;
- tqrepaintNeeded = true;
+ repaintNeeded = true;
}
- if (tqrepaintNeeded)
+ if (repaintNeeded)
doc->tqrepaint( false );
}