180 @return list of installed API files (list of strings) |
180 @return list of installed API files (list of strings) |
181 """ |
181 """ |
182 if self.__apis is not None: |
182 if self.__apis is not None: |
183 if Globals.isWindowsPlatform(): |
183 if Globals.isWindowsPlatform(): |
184 qsciPath = os.path.join( |
184 qsciPath = os.path.join( |
185 Globals.getPyQt4ModulesDirectory(), "qsci") |
185 Globals.getPyQt5ModulesDirectory(), "qsci") |
186 if os.path.exists(qsciPath): |
186 if os.path.exists(qsciPath): |
187 # it's the installer |
187 # it's the installer |
188 if self.__lexer.lexerName() is not None: |
188 if self.__lexer.lexerName() is not None: |
189 apidir = os.path.join(qsciPath, "api", |
189 apidir = os.path.join(qsciPath, "api", |
190 self.__lexer.lexerName()) |
190 self.__lexer.lexerName()) |