238 qtTransDir = QLibraryInfo.location(QLibraryInfo.TranslationsPath) |
238 qtTransDir = QLibraryInfo.location(QLibraryInfo.TranslationsPath) |
239 loadTranslators(qtTransDir, app, ("qscintilla",)) |
239 loadTranslators(qtTransDir, app, ("qscintilla",)) |
240 # qscintilla needed for web browser |
240 # qscintilla needed for web browser |
241 |
241 |
242 w = mwFactory(argv) |
242 w = mwFactory(argv) |
|
243 if w is None: |
|
244 return 100 |
|
245 |
243 if quitOnLastWindowClosed: |
246 if quitOnLastWindowClosed: |
244 app.lastWindowClosed.connect(app.quit) |
247 app.lastWindowClosed.connect(app.quit) |
245 w.show() |
248 w.show() |
246 if raiseIt: |
249 if raiseIt: |
247 w.raise_() |
250 w.raise_() |