shell: Add default case to switch statements

... to shut up a compiler warning.
This commit is contained in:
Florian Müllner
2015-09-23 19:10:16 +02:00
parent 9a3041004b
commit 3e10574736
3 changed files with 9 additions and 0 deletions

View File

@@ -491,6 +491,9 @@ shell_app_activate_full (ShellApp *app,
case SHELL_APP_STATE_RUNNING:
shell_app_activate_window (app, NULL, timestamp);
break;
default:
g_assert_not_reached();
break;
}
}