Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2009-08-20 12:51:15 +0000
committerStijn Buys <ingar@osirion.org>2009-08-20 12:51:15 +0000
commit3451b7a13b7a2567c960022111c0f9617fbc7340 (patch)
tree756240ac8ab5be0a3edd52a6245c1a0c822fcfc7 /src/ui/scrollpane.cc
parent8609fbe54481d812d69c4f0b4321312a7cb9c589 (diff)
initialize unitialized variables
Diffstat (limited to 'src/ui/scrollpane.cc')
-rw-r--r--src/ui/scrollpane.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ui/scrollpane.cc b/src/ui/scrollpane.cc
index 463956d..38260e0 100644
--- a/src/ui/scrollpane.cc
+++ b/src/ui/scrollpane.cc
@@ -17,6 +17,7 @@ ScrollPane::ScrollPane(Widget *parent, ui::Text &text) : Widget(parent), scrollp
{
set_label("scrollpane");
set_alignment(AlignBottom);
+ scrollpane_scroll = 0;
}
ScrollPane::~ScrollPane()