From 648ba4a456d3aad2825193ff8f3bd52a875783b5 Mon Sep 17 00:00:00 2001 From: tpearson Date: Fri, 7 Jan 2011 04:18:52 +0000 Subject: Revert automated changes Sorry guys, they are just not ready for prime time Work will continue as always git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1212481 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- blinken/src/number.cpp | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'blinken/src/number.cpp') diff --git a/blinken/src/number.cpp b/blinken/src/number.cpp index 5316affa..2403f866 100644 --- a/blinken/src/number.cpp +++ b/blinken/src/number.cpp @@ -100,7 +100,7 @@ void number::paintDigit(TQPainter &p, int number) const { // make gcc happy const int *n = m_number0; - int tqshape; + int shape; switch (number) { @@ -147,25 +147,25 @@ void number::paintDigit(TQPainter &p, int number) const { for (int j = 0; j < 4; j++) { - tqshape = n[j + i * 4]; - if (tqshape == 0) + shape = n[j + i * 4]; + if (shape == 0) { p.fillRect(7 * (j-1), 7 * (i-1), 6, 6, Qt::red); } - else if (tqshape != 5) + else if (shape != 5) { - if (tqshape == 1) p.translate(7 * (j-1), 7 * (i-1)); - else if (tqshape == 2) + if (shape == 1) p.translate(7 * (j-1), 7 * (i-1)); + else if (shape == 2) { p.translate(7 * j - 2, 7 * (i-1)); p.rotate(90); } - else if (tqshape == 3) + else if (shape == 3) { p.translate(7 * j - 2, 7 * i - 2); p.rotate(180); } - else if (tqshape == 4) + else if (shape == 4) { p.translate(7 * (j-1), 7 * i - 2); p.rotate(270); @@ -173,19 +173,19 @@ void number::paintDigit(TQPainter &p, int number) const p.drawPie(0, 0, 11, 11, 90 * 16, 16 * 90); - if (tqshape == 1) p.translate(-7 * (j-1), -7 * (i-1)); - else if (tqshape == 2) + if (shape == 1) p.translate(-7 * (j-1), -7 * (i-1)); + else if (shape == 2) { p.rotate(-90); p.translate(-(7 * j - 2), -7 * (i-1)); } - else if (tqshape == 3) + else if (shape == 3) { p.rotate(-180); p.translate(-(7 * j - 2), -(7 * i - 2)); } - else if (tqshape == 4) + else if (shape == 4) { p.rotate(-270); p.translate(- (7 * (j-1)), -(7 * i - 2)); -- cgit v1.2.1