diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:57:28 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:57:28 -0600 |
commit | dc07846059a60d069687585cc72ff501a2096296 (patch) | |
tree | 432ead5b09c6ace7e804629f1f74a3ed58f003e0 /kscd/bwlednum.cpp | |
parent | 3c299dfe48c0060272c2966fff599b3b417e2ee4 (diff) | |
download | tdemultimedia-dc07846059a60d069687585cc72ff501a2096296.tar.gz tdemultimedia-dc07846059a60d069687585cc72ff501a2096296.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'kscd/bwlednum.cpp')
-rw-r--r-- | kscd/bwlednum.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kscd/bwlednum.cpp b/kscd/bwlednum.cpp index bb9ca8c1..eb18917e 100644 --- a/kscd/bwlednum.cpp +++ b/kscd/bwlednum.cpp @@ -168,9 +168,9 @@ void BW_LED_Number::setSmallLED(bool a_boolean){ } -void BW_LED_Number::drawSymbol( TQPainter *p,char ,bool tqrepaint ){ +void BW_LED_Number::drawSymbol( TQPainter *p,char ,bool repaint ){ - // printf("drawSymbol tqrepaint = %d\n",tqrepaint); + // printf("drawSymbol repaint = %d\n",repaint); TQPoint pos; @@ -194,7 +194,7 @@ void BW_LED_Number::drawSymbol( TQPainter *p,char ,bool tqrepaint ){ pos = TQPoint( Xoffset , Yoffset ); - if(tqrepaint){ + if(repaint){ // this draw the non-illumintated segments @@ -222,7 +222,7 @@ void BW_LED_Number::drawSymbol( TQPainter *p,char ,bool tqrepaint ){ } } } - else{ // we are not repainting ourselves due to a tqrepaint event but rather + else{ // we are not repainting ourselves due to a repaint event but rather // genuinely changing the symbol that is to be displayed for(int l = 0; l <= NUM_OF_SEGMENTS -1; l++){ |