E4XML/ShortcutsHandler.py

changeset 45
9a18f4dbb493
parent 13
1af94a91f439
diff -r fe5cd20cb0eb -r 9a18f4dbb493 E4XML/ShortcutsHandler.py
--- a/E4XML/ShortcutsHandler.py	Sun Jan 10 13:59:15 2010 +0000
+++ b/E4XML/ShortcutsHandler.py	Sun Jan 10 19:19:52 2010 +0000
@@ -45,19 +45,19 @@
         """
         Handler method for the "Name" end tag.
         """
-        self.name = self.utf8_to_code(self.buffer)
+        self.name = self.buffer
         
     def endAccel(self):
         """
         Handler method for the "Accel" end tag.
         """
-        self.accel = self.unescape(self.utf8_to_code(self.buffer))
+        self.accel = self.unescape(self.buffer)
         
     def endAltAccel(self):
         """
         Handler method for the "AltAccel" end tag.
         """
-        self.altAccel = self.unescape(self.utf8_to_code(self.buffer))
+        self.altAccel = self.unescape(self.buffer)
         
     def startShortcut(self, attrs):
         """

eric ide

mercurial