diff options
Diffstat (limited to 'kchart/kchartDataConfigPage.cc')
-rw-r--r-- | kchart/kchartDataConfigPage.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kchart/kchartDataConfigPage.cc b/kchart/kchartDataConfigPage.cc index 3766903c..84b6e872 100644 --- a/kchart/kchartDataConfigPage.cc +++ b/kchart/kchartDataConfigPage.cc @@ -27,7 +27,7 @@ #include <kdebug.h> #include <tqhbox.h> -#include <tqlayout.h> +#include <layout.h> #include <tqlabel.h> #include <tqlineedit.h> #include <tqlistbox.h> @@ -82,10 +82,10 @@ KChartDataConfigPage::KChartDataConfigPage( KChartParams* params, TQButtonGroup *gb = new TQVButtonGroup( i18n( "Data Format" ), this ); m_rowMajor = new TQRadioButton( i18n( "Data in rows" ), gb ); - m_rowMajor->resize( m_rowMajor->tqsizeHint() ); + m_rowMajor->resize( m_rowMajor->sizeHint() ); m_colMajor = new TQRadioButton( i18n( "Data in columns" ), gb ); - m_colMajor->resize( m_colMajor->tqsizeHint() ); + m_colMajor->resize( m_colMajor->sizeHint() ); grid1->addWidget(gb, 2, 0); @@ -93,7 +93,7 @@ KChartDataConfigPage::KChartDataConfigPage( KChartParams* params, TQWhatsThis::add(m_rowMajor, i18n("By default one row is considered to be a data set and each column holds the individual values of the data series. This sets the data in rows on your chart.")); TQWhatsThis::add(m_colMajor, i18n("Here you can choose to have each column hold one data set. Note that the values are not really swapped but only their interpretation.")); - m_colMajor->resize( m_colMajor->tqsizeHint() ); + m_colMajor->resize( m_colMajor->sizeHint() ); grid1->addWidget(gb, 1, 0); grid1->setColStretch(3, 0); |