summaryrefslogtreecommitdiffstats
path: root/kenolaba/Spy.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-18 18:31:10 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-06-04 01:10:52 +0200
commit9e8c9cf72cdda55e3c96c7ef072c3358061d53c9 (patch)
tree668cc8f756c0cac76b39b63bc1f09115015a10a5 /kenolaba/Spy.cpp
parent7cfcd74800487ecb6246597fdc559ca8baf2c4da (diff)
downloadtdegames-9e8c9cf72cdda55e3c96c7ef072c3358061d53c9.tar.gz
tdegames-9e8c9cf72cdda55e3c96c7ef072c3358061d53c9.zip
Rename old tq methods that no longer need a unique name
(cherry picked from commit 0e2b76239f354a9eead0b4e37d86d390ec57ffa9)
Diffstat (limited to 'kenolaba/Spy.cpp')
-rw-r--r--kenolaba/Spy.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/kenolaba/Spy.cpp b/kenolaba/Spy.cpp
index e9abc41e..b10892cc 100644
--- a/kenolaba/Spy.cpp
+++ b/kenolaba/Spy.cpp
@@ -23,8 +23,8 @@ Spy::Spy(Board& b)
TQLabel *l = new TQLabel(this);
l->setText( i18n("Actual examined position:") );
- l->setFixedHeight( l->tqsizeHint().height() );
- l->tqsetAlignment( AlignVCenter | AlignLeft );
+ l->setFixedHeight( l->sizeHint().height() );
+ l->setAlignment( AlignVCenter | AlignLeft );
top->addWidget( l );
TQHBoxLayout* b1 = new TQHBoxLayout();
@@ -38,8 +38,8 @@ Spy::Spy(Board& b)
actLabel[i] = new TQLabel(this);
actLabel[i]->setText("---");
// actLabel[i]->setFrameStyle( TQFrame::Panel | TQFrame::Sunken );
- actLabel[i]->tqsetAlignment( AlignHCenter | AlignVCenter);
- actLabel[i]->setFixedHeight( actLabel[i]->tqsizeHint().height() );
+ actLabel[i]->setAlignment( AlignHCenter | AlignVCenter);
+ actLabel[i]->setFixedHeight( actLabel[i]->sizeHint().height() );
b2->addWidget( actBoard[i] );
b2->addWidget( actLabel[i] );
@@ -48,8 +48,8 @@ Spy::Spy(Board& b)
l = new TQLabel(this);
l->setText( i18n("Best move so far:") );
- l->setFixedHeight( l->tqsizeHint().height() );
- l->tqsetAlignment( AlignVCenter | AlignLeft );
+ l->setFixedHeight( l->sizeHint().height() );
+ l->setAlignment( AlignVCenter | AlignLeft );
top->addWidget( l );
b1 = new TQHBoxLayout();
@@ -63,8 +63,8 @@ Spy::Spy(Board& b)
bestLabel[i] = new TQLabel(this);
bestLabel[i]->setText("---");
// bestLabel[i]->setFrameStyle( TQFrame::Panel | TQFrame::Sunken );
- bestLabel[i]->tqsetAlignment( AlignHCenter | AlignVCenter);
- bestLabel[i]->setFixedHeight( bestLabel[i]->tqsizeHint().height() );
+ bestLabel[i]->setAlignment( AlignHCenter | AlignVCenter);
+ bestLabel[i]->setFixedHeight( bestLabel[i]->sizeHint().height() );
b2->addWidget( bestBoard[i] );
b2->addWidget( bestLabel[i] );