eric6.py

changeset 4714
03c5936c79e5
parent 4712
a910b5ae47c9
child 4975
c71c0afee067
--- a/eric6.py	Wed Feb 03 19:44:28 2016 +0100
+++ b/eric6.py	Thu Feb 04 18:40:04 2016 +0100
@@ -317,14 +317,13 @@
     if len(sys.argv) > 1:
         args = sys.argv[1:]
     
-    # TODO: this code is misleading - it applies to Qt5 as well
     # get the Qt4 translations directory
-    qt4TransDir = Preferences.getQt4TranslationsDir()
-    if not qt4TransDir:
-        qt4TransDir = QLibraryInfo.location(QLibraryInfo.TranslationsPath)
+    qtTransDir = Preferences.getQtTranslationsDir()
+    if not qtTransDir:
+        qtTransDir = QLibraryInfo.location(QLibraryInfo.TranslationsPath)
     
     # Load translation files and install them
-    loc = Startup.loadTranslators(qt4TransDir, app, ("qscintilla",))
+    loc = Startup.loadTranslators(qtTransDir, app, ("qscintilla",))
     
     # Initialize SSL stuff
     from E5Network.E5SslUtilities import initSSL

eric ide

mercurial