summaryrefslogtreecommitdiffstats
path: root/src/item.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:06:03 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-08-01 04:34:45 +0200
commit8c4213777476abde50f9d578e709d71ce6a01ebb (patch)
tree9ca643d3ebfc09730e12aeed2d29ef153b36bcf8 /src/item.cpp
parent91ef45e89ef1bb0994d49220556e514d608a664c (diff)
downloadktechlab-8c4213777476abde50f9d578e709d71ce6a01ebb.tar.gz
ktechlab-8c4213777476abde50f9d578e709d71ce6a01ebb.zip
Rename obsolete tq methods to standard names
(cherry picked from commit cd3688b73bf12976e9bb48a9e09c6f69979f33f1)
Diffstat (limited to 'src/item.cpp')
-rw-r--r--src/item.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/item.cpp b/src/item.cpp
index 2a59719..d887a50 100644
--- a/src/item.cpp
+++ b/src/item.cpp
@@ -313,11 +313,11 @@ bool Item::mouseDoubleClickEvent( const EventInfo &eventInfo )
KDialogBase *dlg = new KDialogBase( 0l, "", true, v->editorCaption(), KDialogBase::Ok|KDialogBase::Cancel|KDialogBase::User1, KDialogBase::Ok, false, KStdGuiItem::clear() );
TQFrame *frame = dlg->makeMainWidget();
- TQVBoxLayout *tqlayout = new TQVBoxLayout( frame, 0, dlg->spacingHint() );
+ TQVBoxLayout *layout = new TQVBoxLayout( frame, 0, dlg->spacingHint() );
KTextEdit *textEdit = new KTextEdit( frame );
textEdit->setTextFormat( PlainText );
textEdit->setText( v->value().toString() );
- tqlayout->addWidget( textEdit, 10 );
+ layout->addWidget( textEdit, 10 );
textEdit->setFocus();
connect( dlg, TQT_SIGNAL( user1Clicked() ), textEdit, TQT_SLOT( clear() ) );
dlg->setMinimumWidth( 600 );