bool MyFrame::FlipRACal() { bool bError = false; Mount *scope = TheScope(); if (scope) { bError = scope->FlipCalibration(); if (!bError) { EvtServer.NotifyCalibrationDataFlipped(scope); } } return bError; }
bool MyFrame::FlipRACal() { bool bError = false; Mount *mount = pSecondaryMount ? pSecondaryMount : pMount; if (mount) { bError = mount->FlipCalibration(); if (!bError) { EvtServer.NotifyCalibrationDataFlipped(mount); } } return bError; }