summaryrefslogtreecommitdiff
path: root/src/gui/box.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/box.h')
-rw-r--r--src/gui/box.h42
1 files changed, 21 insertions, 21 deletions
diff --git a/src/gui/box.h b/src/gui/box.h
index fc6b91ae..d65a6ac3 100644
--- a/src/gui/box.h
+++ b/src/gui/box.h
@@ -29,27 +29,27 @@
class Box : public gcn::Container
{
- protected:
- Box();
- virtual ~Box();
-
- /*
- * Spacing between client widgets
- */
- unsigned int padding;
-
- virtual void draw(gcn::Graphics *) = 0;
-
- public:
- /*
- * Returns padding
- */
- unsigned int getPadding();
-
- /*
- * Sets padding between widgets
- */
- void setPadding(unsigned int);
+ protected:
+ Box();
+ virtual ~Box();
+
+ /*
+ * Spacing between client widgets
+ */
+ unsigned int padding;
+
+ virtual void draw(gcn::Graphics *) = 0;
+
+ public:
+ /*
+ * Returns padding
+ */
+ unsigned int getPadding();
+
+ /*
+ * Sets padding between widgets
+ */
+ void setPadding(unsigned int);
};
#endif