Added initial cut of ComboBox

This commit is contained in:
Robert Osfield
2014-05-16 19:24:58 +00:00
parent 3e00764649
commit 87fd1d38fb
6 changed files with 245 additions and 4 deletions

View File

@@ -24,9 +24,9 @@ PushButton::PushButton()
{
}
PushButton::PushButton(const osgUI::PushButton& label, const osg::CopyOp& copyop):
Widget(label, copyop),
_text(label._text)
PushButton::PushButton(const osgUI::PushButton& pb, const osg::CopyOp& copyop):
Widget(pb, copyop),
_text(pb._text)
{
}