MCPcopy Index your code
hub / github.com/arduino/Arduino / handleQuitEach

Method handleQuitEach

app/src/processing/app/Base.java:1020–1027  ·  view source on GitHub ↗

Attempt to close each open sketch in preparation for quitting. @return false if canceled along the way

()

Source from the content-addressed store, hash-verified

1018 * @return false if canceled along the way
1019 */
1020 protected boolean handleQuitEach() {
1021 for (Editor editor : editors) {
1022 if (!editor.checkModified()) {
1023 return false;
1024 }
1025 }
1026 return true;
1027 }
1028
1029
1030 // .................................................................

Callers 1

handleQuitMethod · 0.95

Calls 1

checkModifiedMethod · 0.80

Tested by

no test coverage detected