summaryrefslogtreecommitdiff
path: root/src/interface/Window.cpp
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-01-20 23:42:17 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-01-20 23:42:17 (GMT)
commitfa201a7aeb6c645801a11a115ef6baeed9edf1e5 (patch)
tree616a98dddd3b6f93dd6580f762298690c320b3bf /src/interface/Window.cpp
parent6a331fdaf848ce82adc930ad24ac15c5259d2262 (diff)
downloadpowder-fa201a7aeb6c645801a11a115ef6baeed9edf1e5.zip
powder-fa201a7aeb6c645801a11a115ef6baeed9edf1e5.tar.gz
Fix some uninitialised variables
Diffstat (limited to 'src/interface/Window.cpp')
-rw-r--r--src/interface/Window.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/interface/Window.cpp b/src/interface/Window.cpp
index e28d34b..ca29be0 100644
--- a/src/interface/Window.cpp
+++ b/src/interface/Window.cpp
@@ -7,7 +7,8 @@ using namespace ui;
Window::Window(Point _position, Point _size):
Position(_position),
Size(_size),
- focusedComponent_(NULL)
+ focusedComponent_(NULL),
+ AllowExclusiveDrawing(true)
{
}