We have a (too) large application opencpn. While otherwise seemingly working as normal, I get warning message below when exiting program. Windows is not familiar to me. I have no idea what this actually could mean.

Anyone here who has?
Code: Select all
static InstanceCheck& GetWxInstanceChk() {
static WxInstanceCheck wx_check;
return wx_check;
}
Code: Select all
/** Thin wrapper for wxSingleInstanceChecker implementing InstanceCheck */
class WxInstanceCheck : public InstanceCheck {
public:
WxInstanceCheck();
bool IsMainInstance() override { return !m_checker.IsAnotherRunning(); }
void CleanUp() override;
private:
wxSingleInstanceChecker m_checker;
};