Closed GoogleCodeExporter closed 9 years ago
This is an unfortunate case of me using a non-public API that eventually got
removed. This is fixed in the 0.9.0 branch.
For now, to get things to compile, you can alter the two problem functions to
look like this:
DebugEventHandlerInterface *edb::v1::setDebugEventHandler(DebugEventHandlerInterface *p) {
Q_CHECK_PTR(p);
// TODO: add locks here, used to be atomic
DebugEventHandlerInterface *const oldptr = g_DebugEventHandler;
g_DebugEventHandler = p;
return oldptr;
}
DebugEventHandlerInterface *edb::v1::debugEventHandler() {
return g_DebugEventHandler;
}
Original comment by evan.teran
on 3 Oct 2012 at 3:54
Excellent, works like a charm.
Original comment by evan.teran
on 3 Oct 2012 at 3:55
Original issue reported on code.google.com by
evan.teran
on 3 Oct 2012 at 3:21