(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

@@ -484,7 +484,7 @@ struct NetworkChatWindow : public QueryStringBaseWindow {
switch (widget) {
/* Send */
case NWCW_SENDBUTTON: SendChat(this->text.buf, this->dtype, this->dest);
/* FALLTHROUGH */
/* FALL THROUGH */
case NWCW_CLOSE: /* Cancel */ delete this; break;
}
}
@@ -510,7 +510,7 @@ struct NetworkChatWindow : public QueryStringBaseWindow {
} break;
case HEBR_CONFIRM:
SendChat(this->text.buf, this->dtype, this->dest);
/* FALLTHROUGH */
/* FALL THROUGH */
case HEBR_CANCEL: delete this; break;
case HEBR_NOT_FOCUSED: break;
}