From 1fff1cf07591b1226eb568e95283091eedbeff1d Mon Sep 17 00:00:00 2001 From: tpearson Date: Thu, 7 Jul 2011 21:14:06 +0000 Subject: Rename incorrect instances of tqrepaint[...] to repaint[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1240369 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- wifi/picture.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'wifi/picture.cpp') diff --git a/wifi/picture.cpp b/wifi/picture.cpp index 010a4225..4b03686b 100644 --- a/wifi/picture.cpp +++ b/wifi/picture.cpp @@ -64,7 +64,7 @@ Picture::~Picture () void Picture::paintEvent (TQPaintEvent *) { - TQPainter *pictutqrepainter = new TQPainter (this); + TQPainter *picturepainter = new TQPainter (this); double freq; int mode; device->get_mode (mode); @@ -72,21 +72,21 @@ Picture::paintEvent (TQPaintEvent *) device->get_current_quality (sig, noise, qual); if (!device->get_device_freq (freq) || device->get_txpower_disabled()) { - pictutqrepainter->drawPixmap (X_OFFSET, Y_OFFSET, *NO_CARD); + picturepainter->drawPixmap (X_OFFSET, Y_OFFSET, *NO_CARD); } else if (mode == 1) { - pictutqrepainter->drawPixmap (X_OFFSET, Y_OFFSET, *AD_HOC); + picturepainter->drawPixmap (X_OFFSET, Y_OFFSET, *AD_HOC); } else if (qual == 0) { - pictutqrepainter->drawPixmap (X_OFFSET, Y_OFFSET, *ALL_ALONE); + picturepainter->drawPixmap (X_OFFSET, Y_OFFSET, *ALL_ALONE); } else if (qual > 0) { - pictutqrepainter->drawPixmap (X_OFFSET, Y_OFFSET, *AP_CONNECT); + picturepainter->drawPixmap (X_OFFSET, Y_OFFSET, *AP_CONNECT); } else - pictutqrepainter->drawPixmap (X_OFFSET, Y_OFFSET, *NO_CARD); - delete pictutqrepainter; + picturepainter->drawPixmap (X_OFFSET, Y_OFFSET, *NO_CARD); + delete picturepainter; } -- cgit v1.2.1