| 272 | } |
| 273 | |
| 274 | void MacroExportImportDialog::RefreshExportText() |
| 275 | { |
| 276 | const QString json = BuildExportJson(); |
| 277 | if (usePlainText) { |
| 278 | _importExportString->setPlainText(json); |
| 279 | } else { |
| 280 | _importExportString->setPlainText(compressMacroString(json)); |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | void MacroExportImportDialog::UpdateExportString() |
| 285 | { |
nothing calls this directly
no test coverage detected