Hi,
I'm a longtime C::B user but new to developing and contributing to this forum - sorry if I'm posting in the wrong place.
I've just managed to build C::B trunk on Mac OSX Catalina (arm64). I would like to help debuggin/bugfixing on Mac.
The app does not open because of an assert issue with the clipboard.
I think it's related to this mac-specific bug:
https://github.com/OSGeo/grass/pull/819. It's fixed if the call to Flush() is only made if the clipboard IsOpened():
applies to both OnInit (src/app.cpp, line 581) and OnExit (src/app.cpp, line 829)
and I solved it by wrapping:
if (wxTheClipboard->IsOpened()) {
wxTheClipboard->Flush();
}
Is this the right way to suggest a bug fix?
Thanks for the hard work on C::B,
Federico