diff options
author | Timothy Pearson <[email protected]> | 2011-12-21 14:20:47 -0600 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2012-06-04 01:10:54 +0200 |
commit | edee609d80715382db83adbc8b00c7f74793edcb (patch) | |
tree | b11a53fb2d6b02c5f7613b8fcd724f4b7d5837bf /ksnake | |
parent | 00e58f1937047eb6c23edbdb3ae7ed5feec7a572 (diff) | |
download | tdegames-edee609d80715382db83adbc8b00c7f74793edcb.tar.gz tdegames-edee609d80715382db83adbc8b00c7f74793edcb.zip |
Rename obsolete tq methods to standard names
(cherry picked from commit 36770452958a79a095f9d9e605e79f66cfa79a2b)
Diffstat (limited to 'ksnake')
-rw-r--r-- | ksnake/startroom.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ksnake/startroom.cpp b/ksnake/startroom.cpp index 9792ee4b..24874ee9 100644 --- a/ksnake/startroom.cpp +++ b/ksnake/startroom.cpp @@ -40,16 +40,16 @@ StartRoom::StartRoom( TQWidget *parent, const char *name) TQSpacerItem* spacer = new TQSpacerItem( 20, 61, TQSizePolicy::Minimum, TQSizePolicy::Expanding ); Form1Layout->addItem( spacer, 2, 1 ); - TQHBoxLayout *tqlayout1 = new TQHBoxLayout( 0, 0, 6, "tqlayout1"); + TQHBoxLayout *layout1 = new TQHBoxLayout( 0, 0, 6, "layout1"); TQSpacerItem* spacer_2 = new TQSpacerItem( 91, 20, TQSizePolicy::Expanding, TQSizePolicy::Minimum ); - tqlayout1->addItem( spacer_2 ); + layout1->addItem( spacer_2 ); picture = new TQLabel( this, "picture" ); - tqlayout1->addWidget( picture ); + layout1->addWidget( picture ); TQSpacerItem* spacer_3 = new TQSpacerItem( 41, 20, TQSizePolicy::Expanding, TQSizePolicy::Minimum ); - tqlayout1->addItem( spacer_3 ); + layout1->addItem( spacer_3 ); - Form1Layout->addMultiCellLayout( tqlayout1, 0, 0, 0, 1 ); + Form1Layout->addMultiCellLayout( layout1, 0, 0, 0, 1 ); roomRange = new TQSpinBox( this, "kcfg_StartingRoom" ); roomRange->setMaxValue( 25 ); |