comparison mde/options.d @ 27:0aa621b3e070

Some GUI work, plus a small fix in the paths module. Implemented GUI code to load windows from file with a basic widget and draw. Fixed a bug in mde.resource.paths.mdeDirectory.makeMTReader when called with readOrder == PRIORITY.HIGH_ONLY. committer: Diggory Hardy <diggory.hardy@gmail.com>
author Diggory Hardy <diggory.hardy@gmail.com>
date Fri, 04 Apr 2008 17:07:38 +0100
parents 611f7b9063c6
children
comparison
equal deleted inserted replaced
26:611f7b9063c6 27:0aa621b3e070
132 } catch (ArrayBoundsException) { 132 } catch (ArrayBoundsException) {
133 // log and ignore: 133 // log and ignore:
134 logger.error (ERR_MSG); 134 logger.error (ERR_MSG);
135 } 135 }
136 } 136 }
137 137
138 // Track all sections for saving/loading/other generic handling. 138 // Track all sections for saving/loading/other generic handling.
139 static Options[ID] subClasses; 139 static Options[ID] subClasses;
140 static OptionsGeneric[ID] subClassChanges; 140 static OptionsGeneric[ID] subClassChanges;
141 static bool changed = false; // any changes at all, i.e. do we need to save? 141 static bool changed = false; // any changes at all, i.e. do we need to save?
142 142