Sets the modified value for the code in the frontmost tab.
(boolean state)
| 746 | * Sets the modified value for the code in the frontmost tab. |
| 747 | */ |
| 748 | public void setModified(boolean state) { |
| 749 | //System.out.println("setting modified to " + state); |
| 750 | //new Exception().printStackTrace(System.out); |
| 751 | if (current.isModified() != state) { |
| 752 | current.setModified(state); |
| 753 | calcModified(); |
| 754 | } |
| 755 | } |
| 756 | |
| 757 | |
| 758 | protected void calcModified() { |
no test coverage detected