summaryrefslogtreecommitdiffstats
path: root/kalzium/src/detailinfodlg.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:20:25 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-06-04 04:36:05 +0200
commit7e5586b24f4a2924cbf3303e434b941e25e3b4d2 (patch)
tree3b87ee1c5d17276ec042ea3c06f517167ec1fe14 /kalzium/src/detailinfodlg.cpp
parent3fa570c72df3bf358988b8ce3f019bb7224c380e (diff)
downloadtdeedu-7e5586b24f4a2924cbf3303e434b941e25e3b4d2.tar.gz
tdeedu-7e5586b24f4a2924cbf3303e434b941e25e3b4d2.zip
Rename obsolete tq methods to standard names
(cherry picked from commit ba6b21419810544e0c8666969d21d72161d9084c)
Diffstat (limited to 'kalzium/src/detailinfodlg.cpp')
-rw-r--r--kalzium/src/detailinfodlg.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kalzium/src/detailinfodlg.cpp b/kalzium/src/detailinfodlg.cpp
index 727700d4..8a1ace69 100644
--- a/kalzium/src/detailinfodlg.cpp
+++ b/kalzium/src/detailinfodlg.cpp
@@ -94,10 +94,10 @@ void DetailedInfoDlg::setElement(Element *element)
KHTMLPart* DetailedInfoDlg::addHTMLTab( const TQString& title, const TQString& icontext, const TQString& iconname )
{
TQFrame *frame = addPage(title, icontext, BarIcon(iconname));
- TQVBoxLayout *tqlayout = new TQVBoxLayout( frame );
- tqlayout->setMargin( 0 );
+ TQVBoxLayout *layout = new TQVBoxLayout( frame );
+ layout->setMargin( 0 );
KHTMLPart *w = new KHTMLPart( frame, "html-part", TQT_TQOBJECT(frame) );
- tqlayout->addWidget( w->view() );
+ layout->addWidget( w->view() );
return w;
}