Fixed compile error under codewarrior for PalmOS

svn-id: r11092
This commit is contained in:
Chris Apers 2003-11-03 14:55:36 +00:00
parent f9b7856afb
commit e050421bc2

View File

@ -48,7 +48,10 @@ int16 TabWidget::getChildY() const {
int TabWidget::addTab(const String &title) {
// Add a new tab page
Tab newTab = { title, NULL };
Tab newTab;
newTab.title = title;
newTab.firstWidget = NULL;
_tabs.push_back(newTab);
int numTabs = _tabs.size();