From ebbee358abafa1b5166404c6fe5cc44ae2837a57 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 21 Dec 2011 14:21:13 -0600 Subject: Rename obsolete tq methods to standard names --- kiconedit/kresize.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kiconedit/kresize.cpp') diff --git a/kiconedit/kresize.cpp b/kiconedit/kresize.cpp index ac98e214..b2af86b6 100644 --- a/kiconedit/kresize.cpp +++ b/kiconedit/kresize.cpp @@ -37,18 +37,18 @@ KResizeWidget::KResizeWidget( TQWidget* parent, const char* name, group->setColumnLayout( 0, Qt::Horizontal ); genLayout->addWidget( group ); - TQHBoxLayout* tqlayout = new TQHBoxLayout( group->tqlayout(), 6 ); + TQHBoxLayout* layout = new TQHBoxLayout( group->layout(), 6 ); m_width = new KIntSpinBox( 1, 200, 1, 1, 10, group ); m_width->setValue( size.width() ); - tqlayout->addWidget( m_width, 1 ); + layout->addWidget( m_width, 1 ); TQLabel* label = new TQLabel( "X", group ); - tqlayout->addWidget( label ); + layout->addWidget( label ); m_height = new KIntSpinBox( 1, 200, 1, 1, 10, group); m_height->setValue( size.height() ); - tqlayout->addWidget( m_height, 1 ); + layout->addWidget( m_height, 1 ); setMinimumSize( 200, 100 ); } -- cgit v1.2.3