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. |