BWindow: Style fix, 80 char limit.

This commit is contained in:
John Scipione 2013-12-16 22:52:31 -05:00
parent 1b744548e0
commit 19360a8c07

View File

@ -3524,7 +3524,8 @@ BWindow::_SanitizeMessage(BMessage* message, BHandler* target, bool usePreferred
case _MESSAGE_DROPPED_:
{
uint32 originalWhat;
if (message->FindInt32("_original_what", (int32*)&originalWhat) == B_OK) {
if (message->FindInt32("_original_what",
(int32*)&originalWhat) == B_OK) {
message->what = originalWhat;
message->RemoveName("_original_what");
}