summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/src/dialogs/tqinputdialog.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-07-17 19:19:26 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-07-17 19:19:26 -0500
commit33d3ec06354d07cbb6164eb1c8adbd89c9ecefdd (patch)
tree4939d6567b50d0dd669257422a6868aa1259e62b /tqtinterface/qt4/src/dialogs/tqinputdialog.cpp
parentf01eee0362e54f47d0266295c5263790c04b6510 (diff)
downloadexperimental-33d3ec06354d07cbb6164eb1c8adbd89c9ecefdd.tar.gz
experimental-33d3ec06354d07cbb6164eb1c8adbd89c9ecefdd.zip
Revert "Rename tqsize* to size*"
This reverts commit e33879600503bacc0b4ef090f7f79ab80bb6b0da.
Diffstat (limited to 'tqtinterface/qt4/src/dialogs/tqinputdialog.cpp')
-rw-r--r--tqtinterface/qt4/src/dialogs/tqinputdialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tqtinterface/qt4/src/dialogs/tqinputdialog.cpp b/tqtinterface/qt4/src/dialogs/tqinputdialog.cpp
index 19dad1d..951826b 100644
--- a/tqtinterface/qt4/src/dialogs/tqinputdialog.cpp
+++ b/tqtinterface/qt4/src/dialogs/tqinputdialog.cpp
@@ -152,7 +152,7 @@ TQInputDialog::TQInputDialog( const TQString &label, TQWidget* tqparent,
d->ok->setDefault( TRUE );
TQPushButton *cancel = new TQPushButton( tr( "Cancel" ), this, "qt_cancel_btn" );
- TQSize bs = d->ok->sizeHint().expandedTo( cancel->sizeHint() );
+ TQSize bs = d->ok->tqsizeHint().expandedTo( cancel->tqsizeHint() );
d->ok->setFixedSize( bs );
cancel->setFixedSize( bs );
@@ -168,7 +168,7 @@ TQInputDialog::TQInputDialog( const TQString &label, TQWidget* tqparent,
connect( d->ok, TQT_SIGNAL( clicked() ), this, TQT_SLOT( accept() ) );
connect( cancel, TQT_SIGNAL( clicked() ), this, TQT_SLOT( reject() ) );
- TQSize sh = sizeHint().expandedTo( TQSize(400, 10) );
+ TQSize sh = tqsizeHint().expandedTo( TQSize(400, 10) );
setType( type );
resize( sh.width(), vbox->heightForWidth(sh.width()) );
}
@@ -237,7 +237,7 @@ void TQInputDialog::setType( Type t )
}
if ( input ) {
d->stack->raiseWidget( input );
- d->stack->setFixedHeight( input->sizeHint().height() );
+ d->stack->setFixedHeight( input->tqsizeHint().height() );
input->setFocus();
#ifndef TQT_NO_ACCEL
d->label->setBuddy( input );