summaryrefslogtreecommitdiff
path: root/src/gui/setup.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2005-02-28 03:23:46 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2005-02-28 03:23:46 +0000
commitaa3f1e097f20695fca6384389f9065a26d29f407 (patch)
treee3c32476c17f17159793f2c73d92be3f9a91dbbf /src/gui/setup.h
parent434bd8ec146b5001f8f20ee893f13ba8ba478be9 (diff)
downloadmana-client-aa3f1e097f20695fca6384389f9065a26d29f407.tar.gz
mana-client-aa3f1e097f20695fca6384389f9065a26d29f407.tar.bz2
mana-client-aa3f1e097f20695fca6384389f9065a26d29f407.tar.xz
mana-client-aa3f1e097f20695fca6384389f9065a26d29f407.zip
Formatting updates.
Diffstat (limited to 'src/gui/setup.h')
-rw-r--r--src/gui/setup.h30
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:
/**