summaryrefslogtreecommitdiffstats
path: root/khexedit/statusbarprogress.cc
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
commit625904bd3097f9749450428904ca14ff2531824d (patch)
treea45c43d5de71cb720078fa1272a4339815a919be /khexedit/statusbarprogress.cc
parent6335dc55802871b5a43492f217b6edbb420204c4 (diff)
downloadtdeutils-625904bd3097f9749450428904ca14ff2531824d.tar.gz
tdeutils-625904bd3097f9749450428904ca14ff2531824d.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'khexedit/statusbarprogress.cc')
-rw-r--r--khexedit/statusbarprogress.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/khexedit/statusbarprogress.cc b/khexedit/statusbarprogress.cc
index fda0c9d..ca1e918 100644
--- a/khexedit/statusbarprogress.cc
+++ b/khexedit/statusbarprogress.cc
@@ -28,16 +28,16 @@
#include <klocale.h>
#include <tqstyle.h>
-CStatusBarProgress::CStatusBarProgress( TQWidget *tqparent, const char *name )
- : TQFrame(tqparent, name), TQRangeControl(0, 100, 1, 10, 0),
+CStatusBarProgress::CStatusBarProgress( TQWidget *parent, const char *name )
+ : TQFrame(parent, name), TQRangeControl(0, 100, 1, 10, 0),
mOrientation(Horizontal )
{
initialize();
}
CStatusBarProgress::CStatusBarProgress( Orientation orientation,
- TQWidget *tqparent, const char *name )
- : TQFrame(tqparent, name), TQRangeControl(0, 100, 1, 10, 0),
+ TQWidget *parent, const char *name )
+ : TQFrame(parent, name), TQRangeControl(0, 100, 1, 10, 0),
mOrientation( orientation )
{
initialize();
@@ -45,8 +45,8 @@ CStatusBarProgress::CStatusBarProgress( Orientation orientation,
CStatusBarProgress::CStatusBarProgress( int minValue, int maxValue, int value,
Orientation orientation,
- TQWidget *tqparent, const char *name )
- : TQFrame(tqparent, name), TQRangeControl(minValue, maxValue, 1, 10, value),
+ TQWidget *parent, const char *name )
+ : TQFrame(parent, name), TQRangeControl(minValue, maxValue, 1, 10, value),
mOrientation(orientation)
{
initialize();