diff options
author | Stijn Buys <ingar@osirion.org> | 2009-08-20 12:51:15 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2009-08-20 12:51:15 +0000 |
commit | 3451b7a13b7a2567c960022111c0f9617fbc7340 (patch) | |
tree | 756240ac8ab5be0a3edd52a6245c1a0c822fcfc7 /src/ui | |
parent | 8609fbe54481d812d69c4f0b4321312a7cb9c589 (diff) |
initialize unitialized variables
Diffstat (limited to 'src/ui')
-rw-r--r-- | src/ui/scrollpane.cc | 1 |
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() |