summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/ffrs
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit90363652674deb94cd07057428b24fcb1735dbce (patch)
tree35013223cb731f194f8584cc1c06a023c3c75c85 /noatun-plugins/ffrs
parent627b091fad9df13695f249588e8a58f524eda0fa (diff)
downloadtdeaddons-90363652674deb94cd07057428b24fcb1735dbce.tar.gz
tdeaddons-90363652674deb94cd07057428b24fcb1735dbce.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'noatun-plugins/ffrs')
-rw-r--r--noatun-plugins/ffrs/ffrs.cpp10
-rw-r--r--noatun-plugins/ffrs/ffrs.h2
2 files changed, 6 insertions, 6 deletions
diff --git a/noatun-plugins/ffrs/ffrs.cpp b/noatun-plugins/ffrs/ffrs.cpp
index 7e92f48..12793b4 100644
--- a/noatun-plugins/ffrs/ffrs.cpp
+++ b/noatun-plugins/ffrs/ffrs.cpp
@@ -60,8 +60,8 @@ View::View(int width, int height, int block, int unblock, TQColor front, TQColor
}
- TQBitmap tqmask(width, height);
- TQPainter p(&tqmask);
+ TQBitmap mask(width, height);
+ TQPainter p(&mask);
// TQt::color0 = transparent
// TQt::color1 = opaque
@@ -71,7 +71,7 @@ View::View(int width, int height, int block, int unblock, TQColor front, TQColor
p.fillRect(0, height-i-block, width, block, TQt::color1);
i += block + unblock;
}
- setMask(tqmask);
+ setMask(mask);
units = block+unblock;
show();
@@ -184,8 +184,8 @@ void FFRS::changed()
#include <tqhbox.h>
#include <tqlabel.h>
-FFRSPrefs::FFRSPrefs( TQObject *tqparent )
- : CModule(i18n("Foreign Region"), i18n("French Foreign Region"),"",tqparent)
+FFRSPrefs::FFRSPrefs( TQObject *parent )
+ : CModule(i18n("Foreign Region"), i18n("French Foreign Region"),"",parent)
{
TQVBoxLayout *tqlayout = new TQVBoxLayout(this);
diff --git a/noatun-plugins/ffrs/ffrs.h b/noatun-plugins/ffrs/ffrs.h
index c19e86c..070ba6f 100644
--- a/noatun-plugins/ffrs/ffrs.h
+++ b/noatun-plugins/ffrs/ffrs.h
@@ -58,7 +58,7 @@ Q_OBJECT
TQ_OBJECT
public:
- FFRSPrefs( TQObject *tqparent );
+ FFRSPrefs( TQObject *parent );
virtual void save();
int width();