diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-09-05 21:48:30 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-09-05 21:48:30 +0300 |
commit | 6fee84f3838bdd900e8cfc4a1e4d7f15f35bd6ed (patch) | |
tree | 79a54d4c838c85df29b1b95702b71a95c43ceb5a /src/guichan/include | |
parent | d1bb1b375d657f0821ccfebf18fa1c3873314690 (diff) | |
download | plus-6fee84f3838bdd900e8cfc4a1e4d7f15f35bd6ed.tar.gz plus-6fee84f3838bdd900e8cfc4a1e4d7f15f35bd6ed.tar.bz2 plus-6fee84f3838bdd900e8cfc4a1e4d7f15f35bd6ed.tar.xz plus-6fee84f3838bdd900e8cfc4a1e4d7f15f35bd6ed.zip |
Improve constructors in some classes.
Diffstat (limited to 'src/guichan/include')
-rw-r--r-- | src/guichan/include/guichan/widgets/dropdown.hpp | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/guichan/include/guichan/widgets/dropdown.hpp b/src/guichan/include/guichan/widgets/dropdown.hpp index 6c6ffb4c5..62a129082 100644 --- a/src/guichan/include/guichan/widgets/dropdown.hpp +++ b/src/guichan/include/guichan/widgets/dropdown.hpp @@ -266,11 +266,25 @@ namespace gcn int mFoldedUpHeight; /** + * True if an internal scroll area is used, false if a scroll area + * has been passed to the drop down which the drop down should not + * deleted in it's destructor. + */ + bool mInternalScrollArea; + + /** * The scroll area used. */ ScrollArea* mScrollArea; /** + * True if an internal list box is used, false if a list box + * has been passed to the drop down which the drop down should not + * deleted in it's destructor. + */ + bool mInternalListBox; + + /** * The list box used. */ ListBox* mListBox; @@ -282,20 +296,6 @@ namespace gcn FocusHandler mInternalFocusHandler; /** - * True if an internal scroll area is used, false if a scroll area - * has been passed to the drop down which the drop down should not - * deleted in it's destructor. - */ - bool mInternalScrollArea; - - /** - * True if an internal list box is used, false if a list box - * has been passed to the drop down which the drop down should not - * deleted in it's destructor. - */ - bool mInternalListBox; - - /** * True if the drop down is dragged. */ bool mIsDragged; |