diff options
author | Torbjörn Andersson | 2017-08-06 16:54:38 +0200 |
---|---|---|
committer | Torbjörn Andersson | 2017-08-06 16:54:38 +0200 |
commit | 665f5c99b2ca3db67f75ecfa683389e213d942a6 (patch) | |
tree | 4d519f502a58eb8ac3cf1c73beed10396bbaccdf /gui | |
parent | a57c5b385decbd4c1bf15f2eace01bf7cb33f246 (diff) | |
download | scummvm-rg350-665f5c99b2ca3db67f75ecfa683389e213d942a6.tar.gz scummvm-rg350-665f5c99b2ca3db67f75ecfa683389e213d942a6.tar.bz2 scummvm-rg350-665f5c99b2ca3db67f75ecfa683389e213d942a6.zip |
JANITORIAL: Silence some more GCC 7 fall through warnings
I think these are the last one that were already flagged as being
deliberate.
Diffstat (limited to 'gui')
-rw-r--r-- | gui/editgamedialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/editgamedialog.cpp b/gui/editgamedialog.cpp index 85b37929dc..94c74b40c0 100644 --- a/gui/editgamedialog.cpp +++ b/gui/editgamedialog.cpp @@ -539,7 +539,7 @@ void EditGameDialog::handleCommand(CommandSender *sender, uint32 cmd, uint32 dat _domain = newDomain; } } - // FALL THROUGH to default case + // fall through default: OptionsDialog::handleCommand(sender, cmd, data); } |