BMediaRoster: Pass unhandled messages to the base class
* While it shouldn't be a big problem, the bebook states that it's very important to do so.
This commit is contained in:
parent
1805bbf29b
commit
48b2cb3771
@ -3460,9 +3460,13 @@ BMediaRoster::MessageReceived(BMessage* message)
|
||||
node->DeleteHook(node); // we don't call Release(), see above!
|
||||
return;
|
||||
}
|
||||
|
||||
default:
|
||||
printf("BMediaRoster::MessageReceived: unknown message!\n");
|
||||
message->PrintToStream();
|
||||
BLooper::MessageReceived(message);
|
||||
break;
|
||||
}
|
||||
printf("BMediaRoster::MessageReceived: unknown message!\n");
|
||||
message->PrintToStream();
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user