()
| 756 | |
| 757 | |
| 758 | protected void calcModified() { |
| 759 | modified = false; |
| 760 | for (int i = 0; i < codeCount; i++) { |
| 761 | if (code[i].isModified()) { |
| 762 | modified = true; |
| 763 | break; |
| 764 | } |
| 765 | } |
| 766 | editor.repaintHeader(); |
| 767 | |
| 768 | if (Platform.isMacOS()) { |
| 769 | // http://developer.apple.com/qa/qa2001/qa1146.html |
| 770 | Object modifiedParam = modified ? Boolean.TRUE : Boolean.FALSE; |
| 771 | // https://developer.apple.com/library/mac/technotes/tn2007/tn2196.html#WINDOW_DOCUMENTMODIFIED |
| 772 | editor.getRootPane().putClientProperty("Window.documentModified", modifiedParam); |
| 773 | } |
| 774 | } |
| 775 | |
| 776 | |
| 777 | public boolean isModified() { |
no test coverage detected