| 1556 | } |
| 1557 | |
| 1558 | bool ConfigMainWindow::saveConfig(void) |
| 1559 | { |
| 1560 | if (conf_write(configname)) { |
| 1561 | QMessageBox::information(this, "qconf", "Unable to save configuration!"); |
| 1562 | return false; |
| 1563 | } |
| 1564 | conf_write_autoconf(0); |
| 1565 | |
| 1566 | return true; |
| 1567 | } |
| 1568 | |
| 1569 | void ConfigMainWindow::saveConfigAs(void) |
| 1570 | { |
nothing calls this directly
no test coverage detected