MCPcopy Create free account
hub / github.com/Atarity/Lightpack / on_pbRunConfigurationWizard_clicked

Method on_pbRunConfigurationWizard_clicked

Software/src/SettingsWindow.cpp:1867–1883  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1865}
1866
1867void SettingsWindow::on_pbRunConfigurationWizard_clicked()
1868{
1869 getLightpackApp()->free();
1870
1871#ifdef Q_OS_WIN
1872 QString cmdLine;
1873 cmdLine.append("\"");
1874 cmdLine.append(QApplication::applicationFilePath());
1875 cmdLine.append("\"");
1876 cmdLine.append(" --wizard");
1877 QProcess::startDetached(cmdLine);
1878#else
1879 QProcess::startDetached(QApplication::applicationFilePath().append(" --wizard"));
1880#endif
1881
1882 quit();
1883}
1884
1885void SettingsWindow::onKeepLightsAfterLock_Toggled(bool isEnabled)
1886{

Callers

nothing calls this directly

Calls 2

freeMethod · 0.45
appendMethod · 0.45

Tested by

no test coverage detected