| 95 | } |
| 96 | |
| 97 | bool INIFileEditorWindow::saveFile() |
| 98 | { |
| 99 | if (filename_.isEmpty()) |
| 100 | { |
| 101 | return false; |
| 102 | } |
| 103 | |
| 104 | editor_->store(); |
| 105 | |
| 106 | ParamXMLFile paramFile; |
| 107 | paramFile.store(filename_.toStdString(), param_); |
| 108 | updateWindowTitle(editor_->isModified()); |
| 109 | return true; |
| 110 | } |
| 111 | |
| 112 | bool INIFileEditorWindow::saveFileAs() |
| 113 | { |
nothing calls this directly
no test coverage detected