diff options
author | Timothy Pearson <[email protected]> | 2011-12-21 14:04:07 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-21 14:04:07 -0600 |
commit | 516c39eb4872b2e0dee0baefe675abdf171e847c (patch) | |
tree | 8c41ba125c677e1503831236d9bf12b727bf94f6 /k9author/chapterEdit.cpp | |
parent | 1e42ec29323d1016df59b8b571d16fefe3d4e6f1 (diff) | |
download | k9copy-516c39eb4872b2e0dee0baefe675abdf171e847c.tar.gz k9copy-516c39eb4872b2e0dee0baefe675abdf171e847c.zip |
Rename obsolete tq methods to standard names
Diffstat (limited to 'k9author/chapterEdit.cpp')
-rw-r--r-- | k9author/chapterEdit.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/k9author/chapterEdit.cpp b/k9author/chapterEdit.cpp index 5aa9d03..5354561 100644 --- a/k9author/chapterEdit.cpp +++ b/k9author/chapterEdit.cpp @@ -84,26 +84,26 @@ chapterEdit::chapterEdit( TQWidget* parent, const char* name, WFlags fl ) spacer3 = new TQSpacerItem( 20, 31, TQSizePolicy::Minimum, TQSizePolicy::Fixed ); chapterEditLayout->addItem( spacer3, 3, 2 ); - tqlayout3 = new TQGridLayout( 0, 1, 1, 0, 6, "tqlayout3"); + layout3 = new TQGridLayout( 0, 1, 1, 0, 6, "layout3"); lPosition = new TQLabel( this, "lPosition" ); lPosition->setSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)0, (TQSizePolicy::SizeType)0, 0, 0, lPosition->sizePolicy().hasHeightForWidth() ) ); - tqlayout3->addWidget( lPosition, 1, 1 ); + layout3->addWidget( lPosition, 1, 1 ); slider = new TQSlider( this, "slider" ); slider->setOrientation( Qt::Horizontal ); - tqlayout3->addWidget( slider, 1, 0 ); + layout3->addWidget( slider, 1, 0 ); image = new TQLabel( this, "image" ); image->setMinimumSize( TQSize( 320, 200 ) ); image->setPaletteBackgroundColor( TQColor( 0, 0, 0 ) ); image->setScaledContents( TRUE ); - tqlayout3->addMultiCellWidget( image, 0, 0, 0, 1 ); + layout3->addMultiCellWidget( image, 0, 0, 0, 1 ); - chapterEditLayout->addMultiCellLayout( tqlayout3, 0, 6, 0, 0 ); + chapterEditLayout->addMultiCellLayout( layout3, 0, 6, 0, 0 ); bEnd = new KPushButton( this, "bEnd" ); bEnd->setSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)0, (TQSizePolicy::SizeType)0, 0, 0, bEnd->sizePolicy().hasHeightForWidth() ) ); |