344 if QSCINTILLA_VERSION() >= 0x020501: |
344 if QSCINTILLA_VERSION() >= 0x020501: |
345 openFileFiltersList.extend([ |
345 openFileFiltersList.extend([ |
346 QApplication.translate('Lexers', |
346 QApplication.translate('Lexers', |
347 'Matlab Files (*.m *.m.matlab)'), |
347 'Matlab Files (*.m *.m.matlab)'), |
348 QApplication.translate('Lexers', |
348 QApplication.translate('Lexers', |
349 'Octave Files (*.m *.m.matlab)'), |
349 'Octave Files (*.m *.m.octave)'), |
350 ]) |
350 ]) |
351 |
351 |
352 for name in LexerRegistry: |
352 for name in LexerRegistry: |
353 openFileFiltersList.append(LexerRegistry[name][3]) |
353 openFileFiltersList.append(LexerRegistry[name][3]) |
354 |
354 |