summaryrefslogtreecommitdiffstats
path: root/lib/kotext/KoCustomVariablesDia.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-18 18:12:30 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-18 18:12:30 -0600
commit11191ef0b9908604d1d7aaca382b011ef22c454c (patch)
treed38f0ccd8bfcc9756f5cfc42fb2ad1dad351e6aa /lib/kotext/KoCustomVariablesDia.cpp
parentc9cb4f487428aad5d8cda5e3a4b9ad87390d7e54 (diff)
downloadkoffice-11191ef0b9908604d1d7aaca382b011ef22c454c.tar.gz
koffice-11191ef0b9908604d1d7aaca382b011ef22c454c.zip
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'lib/kotext/KoCustomVariablesDia.cpp')
-rw-r--r--lib/kotext/KoCustomVariablesDia.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/kotext/KoCustomVariablesDia.cpp b/lib/kotext/KoCustomVariablesDia.cpp
index aa74d133..f3b84121 100644
--- a/lib/kotext/KoCustomVariablesDia.cpp
+++ b/lib/kotext/KoCustomVariablesDia.cpp
@@ -67,7 +67,7 @@ void KoVariableNameDia::init()
row1->setSpacing( KDialog::spacingHint() );
TQLabel *l = new TQLabel( i18n( "Name:" ), row1 );
- l->setFixedSize( l->tqsizeHint() );
+ l->setFixedSize( l->sizeHint() );
names = new TQComboBox( TRUE, row1 );
names->setFocus();
@@ -108,9 +108,9 @@ void KoCustomVariablesListItem::setup()
{
TQListViewItem::setup();
setHeight( TQMAX( listView()->fontMetrics().height(),
- editWidget->tqsizeHint().height() ) );
- //if ( listView()->columnWidth( 1 ) < editWidget->tqsizeHint().width() )
- // listView()->setColumnWidth( 1, editWidget->tqsizeHint().width() );
+ editWidget->sizeHint().height() ) );
+ //if ( listView()->columnWidth( 1 ) < editWidget->sizeHint().width() )
+ // listView()->setColumnWidth( 1, editWidget->sizeHint().width() );
}
void KoCustomVariablesListItem::update()
@@ -297,13 +297,13 @@ void KoCustomVarDialog::init()
TQHBox *row1 = new TQHBox( back );
row1->setSpacing( KDialog::spacingHint() );
TQLabel *ln = new TQLabel( i18n( "Name:" ), row1 );
- ln->setFixedSize( ln->tqsizeHint() );
+ ln->setFixedSize( ln->sizeHint() );
m_name = new KLineEdit( row1 );
TQHBox *row2 = new TQHBox( back );
row2->setSpacing( KDialog::spacingHint() );
TQLabel *lv = new TQLabel( i18n( "Value:" ), row2 );
- lv->setFixedSize( lv->tqsizeHint() );
+ lv->setFixedSize( lv->sizeHint() );
m_value = new KLineEdit( row2 );
}