Open main menu

CDOT Wiki β

Changes

Console UI Core Classes - OOP344 20113

8 bytes added, 21:17, 8 November 2011
m
Constructor / Destructor: Changed constructor names to match.
===Constructor / Destructor===
<big><syntaxhighlight lang="cpp">
CCheckCCheckMark(bool Checked,const char* Format, const char* Text, int Row, int Col, int Width, bool IsRadio = false);
</syntaxhighlight></big>
*Passes the ''Row, Col, Width and "1"'' to ''row, col, width and height'' arguments of CField and directly initializes _Label with ''Text, 0, 4, and (Width-4)'' for ''Str, Row, Col and Len'', arguments of CLabel's Constructor.<br />
<big><syntaxhighlight lang="cpp">
CCheckCCheckMark(const CCheck& C);
</syntaxhighlight></big>
*Passes incoming CCheck reference ("C") to CField's copy constructor, and directly initializes the _Label with the _Label of C
1
edit