aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMladen Horvat <acid-burn@opendreambox.org>2011-04-20 11:30:53 +0200
committerMladen Horvat <acid-burn@opendreambox.org>2011-04-20 11:30:53 +0200
commit98150ed3e9f2dc503f7068dcaea1d99fe0dbc9ad (patch)
tree213eb96e0ba58226a172ffc2d4d99202c9e82eb3
parent1976ce9ce95e9e2ec75958a2c7e89c71d0778048 (diff)
downloadenigma2-98150ed3e9f2dc503f7068dcaea1d99fe0dbc9ad.tar.gz
enigma2-98150ed3e9f2dc503f7068dcaea1d99fe0dbc9ad.zip
VirtualKeyBoard.py: fix typo (Lanq -> Lang). refs #750
-rwxr-xr-xlib/python/Screens/VirtualKeyBoard.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Screens/VirtualKeyBoard.py b/lib/python/Screens/VirtualKeyBoard.py
index ebc347c6..c0d0c10f 100755
--- a/lib/python/Screens/VirtualKeyBoard.py
+++ b/lib/python/Screens/VirtualKeyBoard.py
@@ -112,16 +112,16 @@ class VirtualKeyBoard(Screen):
"deleteBackward": self.backClicked,
"back": self.exit
}, -2)
- self.setLanq()
+ self.setLang()
self.onExecBegin.append(self.setKeyboardModeAscii)
self.onLayoutFinish.append(self.buildVirtualKeyBoard)
def switchLang(self):
self.lang = self.nextLang
- self.setLanq()
+ self.setLang()
self.buildVirtualKeyBoard()
- def setLanq(self):
+ def setLang(self):
if self.lang == 'de_DE':
self.keys_list = [
[u"EXIT", u"1", u"2", u"3", u"4", u"5", u"6", u"7", u"8", u"9", u"0", u"BACKSPACE"],