mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-06 06:58:15 +00:00
Missing std::cout -> TRACEARGS from b163b7be48
This commit is contained in:
parent
f70e8d3ae7
commit
74961f58c0
@ -1525,12 +1525,10 @@ bool Manager::sendMessageToWidget(Message* msg, Widget* widget)
|
||||
msg->type() < sizeof(msg_name)/sizeof(const char*)) ?
|
||||
msg_name[msg->type()]: "Unknown";
|
||||
|
||||
std::cout << "Event " << msg->type() << " (" << string << ") "
|
||||
<< "for " << ((void*)widget) << std::flush;
|
||||
std::cout << " (" << typeid(*widget).name() << ")";
|
||||
if (!widget->id().empty())
|
||||
std::cout << " (" << widget->id() << ")";
|
||||
std::cout << std::endl;
|
||||
TRACEARGS("Event", msg->type(), "(", string, ")",
|
||||
"for", ((void*)widget),
|
||||
typeid(*widget).name(),
|
||||
widget->id().empty());
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user