21
edits
Changes
→Attributes
Holds the index of the Field that is currently being edited.
<big><syntaxhighlight lang="cpp">
CField** _fld[C_MAX_NO_FIELDS];
</syntaxhighlight></big>
<big><syntaxhighlight lang="cpp">
bool * _dyn[C_MAX_NO_FIELDS];
</syntaxhighlight></big>
This array will later on be used by destructor to decide which object is dynamic and to be deleted.
<big><syntaxhighlight lang="cpp">
unsigned int _fldSize;
</syntaxhighlight></big>
Holds the current length of '''''_fld''''' and '''''_dyn'''''. <br />When adding a field to dialog if '''_fum''' reaches '''_fldSize''', then the size of '''_fld''' and '''_dyn''' is expanded by '''''C_DIALOG_EXPANSION_SIZE''''', defined in '''cuigh.h'''
===Constructors/Destructors===