From b09bffed6b43262948018dfb0f11890850ddf7c1 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 18 Jun 2011 20:34:22 +0000 Subject: TQt4 port kdeadmin This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeadmin@1237416 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kdat/FormatOptDlg.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'kdat/FormatOptDlg.cpp') diff --git a/kdat/FormatOptDlg.cpp b/kdat/FormatOptDlg.cpp index 81a74f4..3041be5 100644 --- a/kdat/FormatOptDlg.cpp +++ b/kdat/FormatOptDlg.cpp @@ -34,8 +34,8 @@ #include "FormatOptDlg.moc" -FormatOptDlg::FormatOptDlg( const TQString & def, TQWidget* parent, const char* name ) - : TQDialog( parent, name, TRUE ) +FormatOptDlg::FormatOptDlg( const TQString & def, TQWidget* tqparent, const char* name ) + : TQDialog( tqparent, name, TRUE ) { setIconText( i18n( "KDat: Format Options" ) ); setCaption( i18n( "KDat: Format Options" ) ); @@ -43,28 +43,28 @@ FormatOptDlg::FormatOptDlg( const TQString & def, TQWidget* parent, const char* TQLabel* lbl1 = new TQLabel( i18n( "Tape name:" ), this ); TQLabel* lbl2 = new TQLabel( i18n( "Tape size:" ), this ); - int max = lbl1->sizeHint().width(); - if ( lbl2->sizeHint().width() > max ) max = lbl2->sizeHint().width(); + int max = lbl1->tqsizeHint().width(); + if ( lbl2->tqsizeHint().width() > max ) max = lbl2->tqsizeHint().width(); - lbl1->setFixedSize( max, lbl1->sizeHint().height() ); - lbl2->setFixedSize( max, lbl2->sizeHint().height() ); + lbl1->setFixedSize( max, lbl1->tqsizeHint().height() ); + lbl2->setFixedSize( max, lbl2->tqsizeHint().height() ); _entry = new TQLineEdit( this ); _entry->setText( def ); - _entry->setFixedHeight( _entry->sizeHint().height() ); + _entry->setFixedHeight( _entry->tqsizeHint().height() ); _tapeSize = new TQLineEdit( this ); - _tapeSize->setFixedSize( 48, _tapeSize->sizeHint().height() ); + _tapeSize->setFixedSize( 48, _tapeSize->tqsizeHint().height() ); _tapeSizeUnits = new TQComboBox( this ); - _tapeSizeUnits->setFixedSize( 48, _tapeSizeUnits->sizeHint().height() ); + _tapeSizeUnits->setFixedSize( 48, _tapeSizeUnits->tqsizeHint().height() ); _tapeSizeUnits->insertItem( "MB" ); _tapeSizeUnits->insertItem( "GB" ); KPushButton* ok = new KPushButton( KStdGuiItem::ok(), this ); - ok->setFixedSize( 80, ok->sizeHint().height() ); + ok->setFixedSize( 80, ok->tqsizeHint().height() ); KPushButton* cancel = new KPushButton( KStdGuiItem::cancel(), this ); - cancel->setFixedSize( 80, cancel->sizeHint().height() ); + cancel->setFixedSize( 80, cancel->tqsizeHint().height() ); TQVBoxLayout* l1 = new TQVBoxLayout( this, 8, 4 ); TQHBoxLayout* l2 = new TQHBoxLayout(); -- cgit v1.2.3