diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:56:28 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:56:28 -0600 |
commit | 90705c50d34801a0f7516ddc4d3bf6c295413297 (patch) | |
tree | e3b61cdd31aaddef0bf7c78231a08599f8851225 /src/knutanalog.cpp | |
parent | e29455aea4fc1fda591862200c6321a3722e134c (diff) | |
download | knutclient-90705c50d34801a0f7516ddc4d3bf6c295413297.tar.gz knutclient-90705c50d34801a0f7516ddc4d3bf6c295413297.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit e29455aea4fc1fda591862200c6321a3722e134c.
Diffstat (limited to 'src/knutanalog.cpp')
-rw-r--r-- | src/knutanalog.cpp | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/src/knutanalog.cpp b/src/knutanalog.cpp index c3da789..9c0cab4 100644 --- a/src/knutanalog.cpp +++ b/src/knutanalog.cpp @@ -153,7 +153,7 @@ void KNutAnalog::makeBackground (bool run) { paintBackGround(); m_showBackGround = true; if (run) { - repaint(); + tqrepaint(); } } @@ -165,7 +165,7 @@ void KNutAnalog::setText (TQString inscription, TQString text_up, bool run) { if (run) { paintBackGround(); m_showBackGround = true; - repaint(); + tqrepaint(); } } @@ -183,7 +183,7 @@ void KNutAnalog::setDefaultArcColor(bool run) { if (run) { paintBackGround(); m_showBackGround=true; - repaint(); + tqrepaint(); } } @@ -204,7 +204,7 @@ void KNutAnalog::addArc (double startOfCircle, double endOfCircle, int regColor, if (run) { paintBackGround(); m_showBackGround = true; - repaint (); + tqrepaint (); } } @@ -215,7 +215,7 @@ void KNutAnalog::delArc (bool run) { if (run) { paintBackGround(); m_showBackGround = true; - repaint (); + tqrepaint (); } } @@ -230,7 +230,7 @@ void KNutAnalog::setRange (int Astart, int Aend , bool run) { if (run) { paintBackGround(); m_showBackGround = true; - repaint (); + tqrepaint (); } } @@ -242,7 +242,7 @@ void KNutAnalog::setMember (int Count, bool run) { if (run) { paintBackGround(); m_showBackGround = true; - repaint (); + tqrepaint (); } } @@ -254,7 +254,7 @@ void KNutAnalog::setPointerColor (TQColor pointerColor, bool run ) { paintPointer(); m_showPointer = true; if (run) { - repaint (); + tqrepaint (); } } @@ -264,7 +264,7 @@ void KNutAnalog::repaintPointer ( bool run ) { paintPointer(); m_showPointer = true; if (run) { - repaint (); + tqrepaint (); } } @@ -277,7 +277,7 @@ void KNutAnalog::setFontColor (TQColor fontColor, bool run ) { if (run) { paintBackGround(); m_showBackGround = true; - repaint (); + tqrepaint (); } } @@ -288,7 +288,7 @@ void KNutAnalog::setScaleColor (TQColor scaleColor, bool run) { if (run) { paintBackGround(); m_showBackGround = true; - repaint (); + tqrepaint (); } } @@ -307,7 +307,7 @@ void KNutAnalog::setDigitalProcesing (int qualityOfPointer, bool run ) { } paintPointer(); m_showPointer = true; // pri jakemkoliv prekresleni prekreslime rucicku - if (run) repaint (); + if (run) tqrepaint (); } @@ -320,7 +320,7 @@ void KNutAnalog::setPointer (double pointerValue, bool run ) { if (run) { // paintPointer(); m_showPointer = true; // pri jakemkoliv prekresleni prekreslime rucicku - repaint (); + tqrepaint (); } } } @@ -333,26 +333,26 @@ void KNutAnalog::slotSetScaleFont(TQFont newScaleFont){ m_scaleFont = newScaleFont; paintBackGround(); m_showBackGround=true; - repaint(); + tqrepaint(); } void KNutAnalog::slotSetTextFont(TQFont newTextFont){ m_textFont = newTextFont; paintBackGround(); - paintPointer(); // repaint values if pointer + paintPointer(); // tqrepaint values if pointer m_showBackGround=true; m_showPointer=true; - repaint(); + tqrepaint(); } void KNutAnalog::slotSetAllFont(TQFont newAllFont){ m_scaleFont = newAllFont; m_textFont = newAllFont; paintBackGround(); - paintPointer(); // repaint values if pointer + paintPointer(); // tqrepaint values if pointer m_showBackGround=true; m_showPointer=true; - repaint(); + tqrepaint(); } @@ -360,7 +360,7 @@ void KNutAnalog::repaintAll (void) { paintBackGround(); m_showBackGround = true; m_showPointer = true; - repaint (); + tqrepaint (); } |