From 5d234ba02118bb496989914978cd586fe8568a6a Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 26 May 2014 16:15:12 +0000 Subject: [PATCH] Fixed missing initilaizer --- src/osgUI/ComboBox.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/osgUI/ComboBox.cpp b/src/osgUI/ComboBox.cpp index 7ac4c3888..60cfe8224 100644 --- a/src/osgUI/ComboBox.cpp +++ b/src/osgUI/ComboBox.cpp @@ -21,7 +21,8 @@ using namespace osgUI; -ComboBox::ComboBox() +ComboBox::ComboBox(): + _currentItem(0) { }