diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
commit | cee3e820d889e03e7f9704af40436eef3dab6c71 (patch) | |
tree | cf514a4de329cbc8521e2b617d4ac4f45b710672 /noatun-plugins/synaescope | |
parent | 89761f7206a1d363dad8e5759184b0af8077ead5 (diff) | |
download | tdeaddons-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')
-rw-r--r-- | noatun-plugins/synaescope/ui.cpp | 10 |
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; |