diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:06:03 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:06:03 -0600 |
commit | cd3688b73bf12976e9bb48a9e09c6f69979f33f1 (patch) | |
tree | 78031abdf3005ea5df9abfaa83aff7357e2eb3b1 /src/item.cpp | |
parent | 1fc61c6e1d0a2b34f7b1d0de181bb4e6f954a8c2 (diff) | |
download | ktechlab-cd3688b73bf12976e9bb48a9e09c6f69979f33f1.tar.gz ktechlab-cd3688b73bf12976e9bb48a9e09c6f69979f33f1.zip |
Rename obsolete tq methods to standard names
Diffstat (limited to 'src/item.cpp')
-rw-r--r-- | src/item.cpp | 4 |
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 ); |