QScintilla/Editor.py

branch
5_0_x
changeset 876
e21d70cf933c
parent 809
0f19e2fdce8f
equal deleted inserted replaced
873:0d19ab5e30f8 876:e21d70cf933c
1300 """ 1300 """
1301 Private method to check the selected eol type of the eol submenu. 1301 Private method to check the selected eol type of the eol submenu.
1302 """ 1302 """
1303 try: 1303 try:
1304 self.supportedEols[self.getLineSeparator()].setChecked(True) 1304 self.supportedEols[self.getLineSeparator()].setChecked(True)
1305 except AttributeError: 1305 except (AttributeError, TypeError):
1306 pass 1306 pass
1307 1307
1308 def __eolChanged(self): 1308 def __eolChanged(self):
1309 """ 1309 """
1310 Private slot to handle a change of the eol mode. 1310 Private slot to handle a change of the eol mode.

eric ide

mercurial