summaryrefslogtreecommitdiffstats
path: root/kpresenter/KPrConfig.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-07 21:14:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-07 21:14:06 +0000
commitafbfdc507bfaafc8824a9808311d57a9ece87510 (patch)
tree47be45bbd69c321ce79e14b683e59318748be9cb /kpresenter/KPrConfig.cpp
parent880d042b2902fae8007f202dd35ad9330499867b (diff)
downloadkoffice-afbfdc507bfaafc8824a9808311d57a9ece87510.tar.gz
koffice-afbfdc507bfaafc8824a9808311d57a9ece87510.zip
Rename incorrect instances of tqrepaint[...] to repaint[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1240369 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 );
}