diff -r 625f43ae9362 -r 5ebadcda06cb bluetoothengine/btnotif/btdevicedialogplugin/src/btdevicedialoginputwidget.cpp --- a/bluetoothengine/btnotif/btdevicedialogplugin/src/btdevicedialoginputwidget.cpp Fri Aug 06 16:43:21 2010 +0300 +++ b/bluetoothengine/btnotif/btdevicedialogplugin/src/btdevicedialoginputwidget.cpp Fri Sep 03 16:17:59 2010 +0300 @@ -138,7 +138,7 @@ // Numeric value only mInputDialog->setInputMode(HbInputDialog::RealInput); title = QString(hbTrId("txt_bt_title_pairing_with_1")); - // todo: Fixe the multiline problem + // todo: Fix the multiline problem prompt = QString( hbTrId( "txt_bt_dialog_please_enter_the_passcode_for_1" ) ); } else { @@ -165,7 +165,7 @@ QRegExp(regExp, Qt::CaseInsensitive), validator ),""); mInputDialog->setValidator(validator); }else{ - // Minimum requirement is to have at least 1 digit + // Minimum requirement is to have at least 1 digit regExp = tr("^\\d{1,}$"); HbValidator* validator = new HbValidator(mInputDialog->lineEdit()); validator->addField( @@ -173,7 +173,7 @@ QRegExp(regExp, Qt::CaseInsensitive), validator ),""); mInputDialog->setValidator(validator); } - // replace % with the miniLength and device name + // replace % with the minimum length and device name int repls = prompt.count( QString( "%" ) ); if ( repls > 1 ) { prompt = prompt.arg( param.toString() );