| 537 | } |
| 538 | |
| 539 | int COperateDesktop::Save(QSettings &set) |
| 540 | { |
| 541 | int nRet = 0; |
| 542 | Q_ASSERT(GetParameter()); |
| 543 | if(GetParameter() && m_pFrmViewer) |
| 544 | { |
| 545 | GetParameter()->SetAdaptWindows(m_pFrmViewer->GetAdaptWindows()); |
| 546 | GetParameter()->SetZoomFactor(m_pFrmViewer->GetZoomFactor()); |
| 547 | } |
| 548 | if(m_pPara) |
| 549 | nRet = m_pPara->Save(set); |
| 550 | return nRet; |
| 551 | } |
| 552 | |
| 553 | #if HAVE_QT6_RECORD |
| 554 | void COperateDesktop::slotRecord(bool checked) |
nothing calls this directly
no test coverage detected