diff options
Diffstat (limited to 'src/gui/checkbox.h')
-rw-r--r-- | src/gui/checkbox.h | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/src/gui/checkbox.h b/src/gui/checkbox.h index 80612b71..947e6432 100644 --- a/src/gui/checkbox.h +++ b/src/gui/checkbox.h @@ -41,15 +41,21 @@ class CheckBox : public gcn::CheckBox { CheckBox(const std::string& caption, bool marked = false); /** + * Destructor. + */ + ~CheckBox(); + + /** * Draws the check box, not the caption. */ void drawBox(gcn::Graphics* graphics); - + private: - Image *checkBoxNormal; - Image *checkBoxChecked; - Image *checkBoxDisabled; - Image *checkBoxDisabledChecked; + static int instances; + static Image *checkBoxNormal; + static Image *checkBoxChecked; + static Image *checkBoxDisabled; + static Image *checkBoxDisabledChecked; }; #endif |