| 1829 | } |
| 1830 | |
| 1831 | void MainWindow::on_actionLaunchInstance_triggered() |
| 1832 | { |
| 1833 | if (!m_selectedInstance) |
| 1834 | { |
| 1835 | return; |
| 1836 | } |
| 1837 | if(m_selectedInstance->isRunning()) |
| 1838 | { |
| 1839 | APPLICATION->kill(m_selectedInstance); |
| 1840 | } |
| 1841 | else |
| 1842 | { |
| 1843 | APPLICATION->launch(m_selectedInstance); |
| 1844 | } |
| 1845 | } |
| 1846 | |
| 1847 | void MainWindow::activateInstance(InstancePtr instance) |
| 1848 | { |