| 304 | } |
| 305 | |
| 306 | int CFrmViewer::slotSetZoomFactor(double newZoomFactor) |
| 307 | { |
| 308 | if(newZoomFactor < 0) return -1; |
| 309 | if (qFuzzyCompare(m_dbZoomFactor, newZoomFactor)) |
| 310 | return 0; |
| 311 | m_dbZoomFactor = newZoomFactor; |
| 312 | return 0; |
| 313 | } |
| 314 | |
| 315 | int CFrmViewer::ReSize(int width, int height) |
| 316 | { |
no outgoing calls
no test coverage detected