src/hbplugins/inputmethods/touchinput/hbinputqwertynumerictouchkeyboard.cpp
changeset 34 ed14f46c0e55
parent 7 923ff622b8b9
--- a/src/hbplugins/inputmethods/touchinput/hbinputqwertynumerictouchkeyboard.cpp	Mon Oct 04 17:49:30 2010 +0300
+++ b/src/hbplugins/inputmethods/touchinput/hbinputqwertynumerictouchkeyboard.cpp	Mon Oct 18 18:23:13 2010 +0300
@@ -190,7 +190,7 @@
                 if (charKeyCount < 10) {
                     item->setText(numberCharacterBoundToKey((charKeyCount + 1) % 10),
                     HbInputButton::ButtonTextIndexPrimary);  
-                    charKeyCount++;					
+                    charKeyCount++;                 
                 } else {
                     if (key < characters.count()) {
                         item->setText(characters.at(key), HbInputButton::ButtonTextIndexPrimary);
@@ -198,7 +198,7 @@
                         item->setText(QString(), HbInputButton::ButtonTextIndexPrimary);
                     }
                     ++key;
-                }					
+                }                   
             }
         }
         buttonGroup->setButtons(buttons);
@@ -213,7 +213,7 @@
             return;
         }
         QString chars;
-		
+        
         foreach (const HbMappedKey* mappedKey, keyboardMap->keys) {
             chars.append(mappedKey->characters(HbModifierNone));
         }          
@@ -225,8 +225,8 @@
             // Remove digits from it ( digits always come in the first row )
             for (int i=0; i < 10; i++) {
                 allowedChars.remove(numberCharacterBoundToKey(i));
-            }	
-			
+            }   
+            
             foreach (QChar sctChar, allowedChars) {
                 if (!characters.contains(sctChar)) {
                     characters.append(sctChar);