| 1539 | } |
| 1540 | |
| 1541 | void Application::ShowGlobalSettings(class QWidget* parent, QString open_page) |
| 1542 | { |
| 1543 | if (!m_globalSettingsProvider) { |
| 1544 | return; |
| 1545 | } |
| 1546 | emit globalSettingsAboutToOpen(); |
| 1547 | { |
| 1548 | SettingsObject::Lock lock(APPLICATION->settings()); |
| 1549 | PageDialog dlg(m_globalSettingsProvider.get(), open_page, parent); |
| 1550 | dlg.exec(); |
| 1551 | } |
| 1552 | emit globalSettingsClosed(); |
| 1553 | } |
| 1554 | |
| 1555 | MainWindow* Application::showMainWindow(bool minimized) |
| 1556 | { |
no test coverage detected