summaryrefslogtreecommitdiffstats
path: root/kregexpeditor/kregexpeditorprivate.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:23:49 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-06-04 03:15:18 +0200
commita3f1234ece748a30d118e4b6f8333c19505bd516 (patch)
treef86bf3eb14b004c4e2e3bf9bf36e321dee3ce6b5 /kregexpeditor/kregexpeditorprivate.cpp
parent632b7d40cf87562965abb5c7dffc1bae509bad2c (diff)
downloadtdeutils-a3f1234ece748a30d118e4b6f8333c19505bd516.tar.gz
tdeutils-a3f1234ece748a30d118e4b6f8333c19505bd516.zip
Rename obsolete tq methods to standard names
(cherry picked from commit 89856e749bf14e63fed55a8f3436ea9a6f19667a)
Diffstat (limited to 'kregexpeditor/kregexpeditorprivate.cpp')
-rw-r--r--kregexpeditor/kregexpeditorprivate.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kregexpeditor/kregexpeditorprivate.cpp b/kregexpeditor/kregexpeditorprivate.cpp
index e34e20c..08e661e 100644
--- a/kregexpeditor/kregexpeditorprivate.cpp
+++ b/kregexpeditor/kregexpeditorprivate.cpp
@@ -154,17 +154,17 @@ KRegExpEditorPrivate::KRegExpEditorPrivate(TQWidget *parent, const char *name)
// Line Edit
- TQHBoxLayout* tqlayout = new TQHBoxLayout( topLayout, 6 );
+ TQHBoxLayout* layout = new TQHBoxLayout( topLayout, 6 );
TQLabel* label = new TQLabel( i18n("ASCII syntax:"), this );
- tqlayout->addWidget( label );
+ layout->addWidget( label );
clearButton = new TQToolButton( this );
const TQString icon( TQString::fromLatin1( TQApplication::reverseLayout() ? "clear_left" : "locationbar_erase" ) );
TQIconSet clearIcon = SmallIconSet( icon );
clearButton->setIconSet( clearIcon );
- tqlayout->addWidget( clearButton );
+ layout->addWidget( clearButton );
TQToolTip::add( clearButton, i18n("Clear expression") );
_regexpEdit = new TQLineEdit( this );
- tqlayout->addWidget( _regexpEdit );
+ layout->addWidget( _regexpEdit );
TQWhatsThis::add( _regexpEdit, i18n( "This is the regular expression in ASCII syntax. You are likely only "
"to be interested in this if you are a programmer, and need to "
"develop a regular expression using TQRegExp.<p>"
@@ -178,7 +178,7 @@ KRegExpEditorPrivate::KRegExpEditorPrivate(TQWidget *parent, const char *name)
#endif
_error = new TQLabel( this );
_error->setPixmap( pix );
- tqlayout->addWidget( _error );
+ layout->addWidget( _error );
_error->hide();
_timer = new TQTimer(this);