mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-12 11:43:00 +00:00
Fixed compile error under codewarrior for PalmOS
svn-id: r11092
This commit is contained in:
parent
f9b7856afb
commit
e050421bc2
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user