diff options
Diffstat (limited to 'kmid/klcdnumber.cpp')
-rw-r--r-- | kmid/klcdnumber.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kmid/klcdnumber.cpp b/kmid/klcdnumber.cpp index 355f9578..3fdf80c4 100644 --- a/kmid/klcdnumber.cpp +++ b/kmid/klcdnumber.cpp @@ -197,7 +197,7 @@ void KLCDNumber::setValue(double v) void KLCDNumber::display (double v) { setValue(v); - tqrepaint(FALSE); + repaint(FALSE); } void KLCDNumber::display (int v) @@ -317,13 +317,13 @@ void KLCDNumber::defaultValueClicked() void KLCDNumber::setLCDBackgroundColor(int r,int g,int b) { backgcolor=TQColor(r,g,b); - tqrepaint(FALSE); + repaint(FALSE); } void KLCDNumber::setLCDColor(int r,int g,int b) { LCDcolor=TQColor(r,g,b); - tqrepaint(FALSE); + repaint(FALSE); } void KLCDNumber::setRange(double min, double max) @@ -332,7 +332,7 @@ void KLCDNumber::setRange(double min, double max) maxValue=max; } -TQSize KLCDNumber::tqsizeHint() +TQSize KLCDNumber::sizeHint() { return TQSize(83,28); } |