summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/synaescope/ui.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commitcee3e820d889e03e7f9704af40436eef3dab6c71 (patch)
treecf514a4de329cbc8521e2b617d4ac4f45b710672 /noatun-plugins/synaescope/ui.cpp
parent89761f7206a1d363dad8e5759184b0af8077ead5 (diff)
downloadtdeaddons-cee3e820d889e03e7f9704af40436eef3dab6c71.tar.gz
tdeaddons-cee3e820d889e03e7f9704af40436eef3dab6c71.zip
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'noatun-plugins/synaescope/ui.cpp')
-rw-r--r--noatun-plugins/synaescope/ui.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/noatun-plugins/synaescope/ui.cpp b/noatun-plugins/synaescope/ui.cpp
index 846a3b7..570bdb6 100644
--- a/noatun-plugins/synaescope/ui.cpp
+++ b/noatun-plugins/synaescope/ui.cpp
@@ -257,14 +257,14 @@ struct SliderBar : public UIObject
struct PopperUpper : public UIObject
{
- int tqmaskAdd;
+ int maskAdd;
PopperUpper(int _am,int _vm,double _x,double _y,
- double _width,double _height, int _tqmaskAdd)
+ double _width,double _height, int _maskAdd)
{
activeMask = _am; visibleMask = _vm;
x = _x; y = _y; width = _width; height = _height;
- tqmaskAdd = _tqmaskAdd;
+ maskAdd = _maskAdd;
}
int go(bool mouseDown,bool mouseClick, bool mouseOver,
@@ -282,7 +282,7 @@ struct PopperUpper : public UIObject
0x0200,
x*scale,y*scale,width*scale,height*scale);
- return mouseOver ? tqmaskAdd : 0;
+ return mouseOver ? maskAdd : 0;
}
void handleKey(char key, int &action)
@@ -346,7 +346,7 @@ void Interface::setupPalette()
#define OPEN 64
-// TODO Lay things out with tqparents and a stack, like QT
+// TODO Lay things out with parents and a stack, like QT
Interface::Interface()
{
static const float IconSize=0.2;