GUI: Add Missing Switch Default Cases

These are flagged by GCC if -Wswitch-default is enabled.
This commit is contained in:
D G Turner 2019-10-03 06:03:46 +01:00
parent 904e58c35b
commit 30c366ee5d
15 changed files with 43 additions and 4 deletions

View file

@ -111,6 +111,8 @@ void ScrollContainerWidget::handleCommand(CommandSender *sender, uint32 cmd, uin
reflowLayout();
g_gui.scheduleTopDialogRedraw();
break;
default:
break;
}
}