208 @return list of installed API files (list of strings) |
208 @return list of installed API files (list of strings) |
209 """ |
209 """ |
210 if self.__apis is not None: |
210 if self.__apis is not None: |
211 if Globals.isWindowsPlatform(): |
211 if Globals.isWindowsPlatform(): |
212 qsciPath = os.path.join( |
212 qsciPath = os.path.join( |
213 Globals.getPyQt5ModulesDirectory(), "qsci") |
213 Globals.getPyQt6ModulesDirectory(), "qsci") |
214 if os.path.exists(qsciPath): |
214 if os.path.exists(qsciPath): |
215 # it's the installer |
215 # it's the installer |
216 if self.__lexer.lexerName() is not None: |
216 if self.__lexer.lexerName() is not None: |
217 apidir = os.path.join(qsciPath, "api", |
217 apidir = os.path.join(qsciPath, "api", |
218 self.__lexer.lexerName()) |
218 self.__lexer.lexerName()) |