(svn r20239) -Doc: Give a common name to all fall throughs (FALL THROUGH).

This commit is contained in:
terkhen
2010-07-29 14:26:28 +00:00
parent 04242e19cf
commit 88ca183191
30 changed files with 52 additions and 52 deletions

View File

@@ -1340,10 +1340,10 @@ struct QueryStringWindow : public QueryStringBaseWindow
switch (widget) {
case QUERY_STR_WIDGET_DEFAULT:
this->text.buf[0] = '\0';
/* Fallthrough */
/* FALL THROUGH */
case QUERY_STR_WIDGET_OK:
this->OnOk();
/* Fallthrough */
/* FALL THROUGH */
case QUERY_STR_WIDGET_CANCEL:
delete this;
break;
@@ -1532,7 +1532,7 @@ struct QueryWindow : public Window {
this->proc(this->parent, true);
this->proc = NULL;
}
/* Fallthrough */
/* FALL THROUGH */
case WKC_ESC:
delete this;
return ES_HANDLED;