summaryrefslogtreecommitdiff
path: root/src/gui/widgets/container.h
diff options
context:
space:
mode:
authorBjørn <bjorn@horst-dieter.(none)>2009-04-12 19:04:20 +0200
committerBjørn <bjorn@horst-dieter.(none)>2009-04-12 19:06:38 +0200
commit9f5b89189f00c959882f86067634a512e6970614 (patch)
tree8964803d49528d35585f1fb26f8f22e3c7353a52 /src/gui/widgets/container.h
parenta6998fbdfaf84aa1920564d97e3421ed28c9a893 (diff)
downloadMana-9f5b89189f00c959882f86067634a512e6970614.tar.gz
Mana-9f5b89189f00c959882f86067634a512e6970614.tar.bz2
Mana-9f5b89189f00c959882f86067634a512e6970614.tar.xz
Mana-9f5b89189f00c959882f86067634a512e6970614.zip
Moved client version string creation to preprocessor
Diffstat (limited to 'src/gui/widgets/container.h')
-rw-r--r--src/gui/widgets/container.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/gui/widgets/container.h b/src/gui/widgets/container.h
index a6d1610e..dd286609 100644
--- a/src/gui/widgets/container.h
+++ b/src/gui/widgets/container.h
@@ -25,13 +25,18 @@
#include <guichan/widgets/container.hpp>
/**
- * A widget container. The only difference between the standard Guichan
- * container and this one is that childs added to this container are
- * automatically deleted when the container is deleted.
+ * A widget container.
+ *
+ * The main difference between the standard Guichan container and this one is
+ * that childs added to this container are automatically deleted when the
+ * container is deleted.
+ *
+ * This container is also non-opaque by default.
*/
class Container : public gcn::Container
{
public:
+ Container();
~Container();
};