Add 'TODO', to make sure we come back to this at some point.

This commit is contained in:
Stephen Anthony 2017-03-24 18:54:01 -02:30
parent 1da8e2d388
commit 9fb45a0a88
2 changed files with 2 additions and 2 deletions

View File

@ -690,7 +690,7 @@ void DataGridWidget::endEditMode()
editString().insert(0, 1, '#');
break;
case Common::Base::F_DEFAULT:
default:
default: // TODO - properly handle all other cases
break;
}
}

View File

@ -111,7 +111,7 @@ RomListWidget::RomListWidget(GuiObject* boss, const GUI::Font& lfont,
return (c >= '0' && c <= '9') || c == ' ';
case Common::Base::F_DEFAULT:
default:
default: // TODO - properly handle all other cases
return false;
}
return false;