| 2638 | } |
| 2639 | |
| 2640 | void MergeResultWindow::setModified(bool bModified) |
| 2641 | { |
| 2642 | if(bModified != m_bModified) |
| 2643 | { |
| 2644 | m_bModified = bModified; |
| 2645 | Q_EMIT modifiedChanged(m_bModified); |
| 2646 | } |
| 2647 | } |
| 2648 | |
| 2649 | /// Saves and returns true when successful. |
| 2650 | bool MergeResultWindow::saveDocument(const QString& fileName, const char* encoding, e_LineEndStyle eLineEndStyle) |
nothing calls this directly
no outgoing calls
no test coverage detected