mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-02-03 09:44:01 -05: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_fftWisdomProcess(nullptr)
|
||||
{
|
||||
bool showWelcome = ANDROID;
|
||||
#ifdef ANDROID
|
||||
bool showWelcome = true;
|
||||
#else
|
||||
bool showWelcome = false;
|
||||
#endif
|
||||
|
||||
qDebug() << "MainWindow::MainWindow: start";
|
||||
setWindowTitle("SDRangel");
|
||||
@ -240,7 +244,7 @@ MainWindow::MainWindow(qtwebapp::LoggerWithFile *logger, const MainParser& parse
|
||||
addWorkspace();
|
||||
|
||||
// If no configurations, load some basic examples
|
||||
if (m_mainCore->m_settings.getConfigurations().size() == 0) {
|
||||
if (m_mainCore->m_settings.getConfigurations()->size() == 0) {
|
||||
loadDefaultConfigurations();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user