bluetoothengine/btnotif/btdevicedialogplugin/src/btdevicedialoginputwidget.cpp
changeset 57 5ebadcda06cb
parent 42 b72428996822
child 70 f5508c13dfe0
--- 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() );