mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-05-30 22:02:26 -04:00
Fix syntax error
This commit is contained in:
parent
68603fec43
commit
df5dc0c491
@ -120,7 +120,11 @@ MainWindow::MainWindow(qtwebapp::LoggerWithFile *logger, const MainParser& parse
|
|||||||
m_commandKeyReceiver(nullptr),
|
m_commandKeyReceiver(nullptr),
|
||||||
m_fftWisdomProcess(nullptr)
|
m_fftWisdomProcess(nullptr)
|
||||||
{
|
{
|
||||||
bool showWelcome = ANDROID;
|
#ifdef ANDROID
|
||||||
|
bool showWelcome = true;
|
||||||
|
#else
|
||||||
|
bool showWelcome = false;
|
||||||
|
#endif
|
||||||
|
|
||||||
qDebug() << "MainWindow::MainWindow: start";
|
qDebug() << "MainWindow::MainWindow: start";
|
||||||
setWindowTitle("SDRangel");
|
setWindowTitle("SDRangel");
|
||||||
@ -240,7 +244,7 @@ MainWindow::MainWindow(qtwebapp::LoggerWithFile *logger, const MainParser& parse
|
|||||||
addWorkspace();
|
addWorkspace();
|
||||||
|
|
||||||
// If no configurations, load some basic examples
|
// If no configurations, load some basic examples
|
||||||
if (m_mainCore->m_settings.getConfigurations().size() == 0) {
|
if (m_mainCore->m_settings.getConfigurations()->size() == 0) {
|
||||||
loadDefaultConfigurations();
|
loadDefaultConfigurations();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user