| 1456 | } |
| 1457 | |
| 1458 | void Application::ShowGlobalSettings(class QWidget* parent, QString open_page) |
| 1459 | { |
| 1460 | if(!m_globalSettingsProvider) { |
| 1461 | return; |
| 1462 | } |
| 1463 | emit globalSettingsAboutToOpen(); |
| 1464 | { |
| 1465 | SettingsObject::Lock lock(APPLICATION->settings()); |
| 1466 | PageDialog dlg(m_globalSettingsProvider.get(), open_page, parent); |
| 1467 | dlg.exec(); |
| 1468 | } |
| 1469 | emit globalSettingsClosed(); |
| 1470 | } |
| 1471 | |
| 1472 | MainWindow* Application::showMainWindow(bool minimized) |
| 1473 | { |
no test coverage detected