diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-02-28 03:23:46 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-02-28 03:23:46 +0000 |
commit | aa3f1e097f20695fca6384389f9065a26d29f407 (patch) | |
tree | e3c32476c17f17159793f2c73d92be3f9a91dbbf /src/gui/setup.h | |
parent | 434bd8ec146b5001f8f20ee893f13ba8ba478be9 (diff) | |
download | mana-aa3f1e097f20695fca6384389f9065a26d29f407.tar.gz mana-aa3f1e097f20695fca6384389f9065a26d29f407.tar.bz2 mana-aa3f1e097f20695fca6384389f9065a26d29f407.tar.xz mana-aa3f1e097f20695fca6384389f9065a26d29f407.zip |
Formatting updates.
Diffstat (limited to 'src/gui/setup.h')
-rw-r--r-- | src/gui/setup.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/gui/setup.h b/src/gui/setup.h index e1f28beb..2bfab15e 100644 --- a/src/gui/setup.h +++ b/src/gui/setup.h @@ -35,6 +35,16 @@ class ModeListModel : public gcn::ListModel { public: /** + * Constructor. + */ + ModeListModel(); + + /** + * Destructor. + */ + virtual ~ModeListModel(); + + /** * Returns the number of elements in container. */ int getNumberOfElements(); @@ -44,19 +54,9 @@ class ModeListModel : public gcn::ListModel { */ std::string getElementAt(int i); - /** - * Constructor. - */ - ModeListModel(); - - /** - * Destructor. - */ - virtual ~ModeListModel(); - private: - int nmode; - char **mode; + int nmode; + char **mode; }; /** @@ -78,9 +78,9 @@ class Setup : public Window, public gcn::ActionListener { gcn::Button *applyButton; gcn::Button *cancelButton; - // Video selections - int last_sel, sel; - + // Video selections + int last_sel, sel; + public: /** |