summaryrefslogtreecommitdiffstats
path: root/kregexpeditor/zerowidgets.h
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 /kregexpeditor/zerowidgets.h
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 'kregexpeditor/zerowidgets.h')
-rw-r--r--kregexpeditor/zerowidgets.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kregexpeditor/zerowidgets.h b/kregexpeditor/zerowidgets.h
index f418988..780f426 100644
--- a/kregexpeditor/zerowidgets.h
+++ b/kregexpeditor/zerowidgets.h
@@ -27,7 +27,7 @@
class ZeroWidget :public RegExpWidget
{
public:
- ZeroWidget(TQString text, RegExpEditorWindow* editorWindow, TQWidget *tqparent,
+ ZeroWidget(TQString text, RegExpEditorWindow* editorWindow, TQWidget *parent,
const char *name = 0);
virtual void addNewChild(DragAccepter *accepter, RegExpWidget *child);
virtual TQSize tqsizeHint() const;
@@ -51,7 +51,7 @@ private:
class AnyCharWidget :public ZeroWidget
{
public:
- AnyCharWidget(RegExpEditorWindow* editorWindow, TQWidget *tqparent,
+ AnyCharWidget(RegExpEditorWindow* editorWindow, TQWidget *parent,
const char *label = 0);
virtual RegExp* regExp() const;
@@ -68,7 +68,7 @@ public:
class BegLineWidget : public ZeroWidget
{
public:
- BegLineWidget(RegExpEditorWindow* editorWindow, TQWidget *tqparent,
+ BegLineWidget(RegExpEditorWindow* editorWindow, TQWidget *parent,
const char *name = 0);
virtual RegExp* regExp() const;
virtual RegExpType type() const { return BEGLINE; }
@@ -84,7 +84,7 @@ public:
class EndLineWidget : public ZeroWidget
{
public:
- EndLineWidget(RegExpEditorWindow* editorWindow, TQWidget *tqparent,
+ EndLineWidget(RegExpEditorWindow* editorWindow, TQWidget *parent,
const char *name = 0);
virtual RegExp* regExp() const;
virtual RegExpType type() const { return ENDLINE; }
@@ -99,7 +99,7 @@ public:
class WordBoundaryWidget : public ZeroWidget
{
public:
- WordBoundaryWidget(RegExpEditorWindow* editorWindow, TQWidget *tqparent,
+ WordBoundaryWidget(RegExpEditorWindow* editorWindow, TQWidget *parent,
const char *name = 0);
virtual RegExp* regExp() const;
virtual RegExpType type() const { return WORDBOUNDARY; }
@@ -115,7 +115,7 @@ public:
class NonWordBoundaryWidget : public ZeroWidget
{
public:
- NonWordBoundaryWidget(RegExpEditorWindow* editorWindow, TQWidget *tqparent,
+ NonWordBoundaryWidget(RegExpEditorWindow* editorWindow, TQWidget *parent,
const char *name = 0);
virtual RegExp* regExp() const;
virtual RegExpType type() const { return NONWORDBOUNDARY; }