summaryrefslogtreecommitdiffstats
path: root/kregexpeditor/textwidget.cpp
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/textwidget.cpp
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/textwidget.cpp')
-rw-r--r--kregexpeditor/textwidget.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/kregexpeditor/textwidget.cpp b/kregexpeditor/textwidget.cpp
index 1095749..99a77e1 100644
--- a/kregexpeditor/textwidget.cpp
+++ b/kregexpeditor/textwidget.cpp
@@ -24,16 +24,16 @@
#include "selectablelineedit.h"
#include <tqlayout.h>
-TextWidget::TextWidget(RegExpEditorWindow* editorWindow, TQWidget *tqparent,
+TextWidget::TextWidget(RegExpEditorWindow* editorWindow, TQWidget *parent,
const char *name)
- :RegExpWidget(editorWindow, tqparent, name)
+ :RegExpWidget(editorWindow, parent, name)
{
init( TQString::fromLocal8Bit("") );
}
TextWidget::TextWidget( TextRegExp* regexp, RegExpEditorWindow* editorWindow,
- TQWidget* tqparent, const char* name )
- : RegExpWidget( editorWindow, tqparent, name )
+ TQWidget* parent, const char* name )
+ : RegExpWidget( editorWindow, parent, name )
{
init(regexp->text());
}
@@ -56,11 +56,11 @@ void TextWidget::init( const TQString& txt )
void TextWidget::slotUpdate()
{
- // I need to force the tqparent to tqrepaint, as the size change of this
- // widget may not be enough for the tqparent to change size, and in that
- // case the tqparent would not tqrepaint, and the text widget would not be
+ // I need to force the parent to tqrepaint, as the size change of this
+ // widget may not be enough for the parent to change size, and in that
+ // case the parent would not tqrepaint, and the text widget would not be
// resized.
- TQWidget *p = TQT_TQWIDGET(tqparent());
+ TQWidget *p = TQT_TQWIDGET(parent());
if (p)
p->tqrepaint();
_editorWindow->updateContent( this );