MCPcopy Create free account
hub / github.com/Neverous/efibooteditor / export_

Method export_

src/efibooteditor.cpp:246–256  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

244}
245
246void EFIBootEditor::export_()
247{
248 QString file_name = QFileDialog::getSaveFileName(this, tr("Save boot configuration dump"), "", tr("JSON documents (*.json)"));
249 if(file_name.isEmpty())
250 return;
251
252 if(!file_name.endsWith(".json", Qt::CaseInsensitive))
253 file_name += ".json";
254
255 data.export_(file_name);
256}
257
258void EFIBootEditor::dump()
259{

Callers

nothing calls this directly

Calls 1

isEmptyMethod · 0.80

Tested by

no test coverage detected