diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:58:25 -0600 | 
|---|---|---|
| committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:58:25 -0600 | 
| commit | 2c01fd64ddde84a6d78b632f7f3b7c3560dc288c (patch) | |
| tree | 65f4f4370cf4269757d7fa4d0f4d15996a1bf68f /ksysguard/gui/SensorDisplayLib/DancingBarsSettings.cc | |
| parent | 73c08b592db45af554b9f21029bc549d70f683ab (diff) | |
| download | tdebase-2c01fd64ddde84a6d78b632f7f3b7c3560dc288c.tar.gz tdebase-2c01fd64ddde84a6d78b632f7f3b7c3560dc288c.zip | |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 73c08b592db45af554b9f21029bc549d70f683ab.
Diffstat (limited to 'ksysguard/gui/SensorDisplayLib/DancingBarsSettings.cc')
| -rw-r--r-- | ksysguard/gui/SensorDisplayLib/DancingBarsSettings.cc | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/ksysguard/gui/SensorDisplayLib/DancingBarsSettings.cc b/ksysguard/gui/SensorDisplayLib/DancingBarsSettings.cc index d0febd3f2..b1e6fc0d5 100644 --- a/ksysguard/gui/SensorDisplayLib/DancingBarsSettings.cc +++ b/ksysguard/gui/SensorDisplayLib/DancingBarsSettings.cc @@ -33,7 +33,7 @@  #include <tqframe.h>  #include <tqgroupbox.h>  #include <tqlabel.h> -#include <layout.h> +#include <tqlayout.h>  #include <tqpushbutton.h>  #include <tqwhatsthis.h> @@ -48,7 +48,7 @@ DancingBarsSettings::DancingBarsSettings( TQWidget* parent, const char* name )    TQGridLayout *pageLayout = new TQGridLayout( page, 3, 1, 0, spacingHint() );    TQGroupBox *groupBox = new TQGroupBox( 0, Qt::Vertical, i18n( "Title" ), page ); -  TQGridLayout *boxLayout = new TQGridLayout( groupBox->layout(), 1, 1 ); +  TQGridLayout *boxLayout = new TQGridLayout( groupBox->tqlayout(), 1, 1 );    mTitle = new KLineEdit( groupBox );    TQWhatsThis::add( mTitle, i18n( "Enter the title of the display here." ) ); @@ -57,7 +57,7 @@ DancingBarsSettings::DancingBarsSettings( TQWidget* parent, const char* name )    pageLayout->addWidget( groupBox, 0, 0 );    groupBox = new TQGroupBox( 0, Qt::Vertical, i18n( "Display Range" ), page ); -  boxLayout = new TQGridLayout( groupBox->layout(), 1, 5 ); +  boxLayout = new TQGridLayout( groupBox->tqlayout(), 1, 5 );    boxLayout->setColStretch( 2, 1 );    TQLabel *label = new TQLabel( i18n( "Minimum value:" ), groupBox ); @@ -85,7 +85,7 @@ DancingBarsSettings::DancingBarsSettings( TQWidget* parent, const char* name )    pageLayout = new TQGridLayout( page, 3, 1, 0, spacingHint() );    groupBox = new TQGroupBox( 0, Qt::Vertical, i18n( "Alarm for Minimum Value" ), page ); -  boxLayout = new TQGridLayout( groupBox->layout(), 1, 4 ); +  boxLayout = new TQGridLayout( groupBox->tqlayout(), 1, 4 );    boxLayout->setColStretch( 1, 1 );    mUseLowerLimit = new TQCheckBox( i18n( "Enable alarm" ), groupBox ); @@ -103,7 +103,7 @@ DancingBarsSettings::DancingBarsSettings( TQWidget* parent, const char* name )    pageLayout->addWidget( groupBox, 0, 0 );    groupBox = new TQGroupBox( 0, Qt::Vertical, i18n( "Alarm for Maximum Value" ), page ); -  boxLayout = new TQGridLayout( groupBox->layout(), 1, 4 ); +  boxLayout = new TQGridLayout( groupBox->tqlayout(), 1, 4 );    boxLayout->setColStretch( 1, 1 );    mUseUpperLimit = new TQCheckBox( i18n( "Enable alarm" ), groupBox ); | 
