Browse Source

Fix build with --disable-webui

"app/application.cpp:108:7: error: class 'Application' does not have
any field named 'm_webui'"
adaptive-webui-19844
Heiko Becker 7 years ago committed by sledgehammer999
parent
commit
af898e9117
No known key found for this signature in database
GPG Key ID: 6E4A2D025B7CC9A2
  1. 2
      src/app/application.cpp

2
src/app/application.cpp

@ -105,7 +105,9 @@ Application::Application(const QString &id, int &argc, char **argv) @@ -105,7 +105,9 @@ Application::Application(const QString &id, int &argc, char **argv)
, m_running(false)
, m_shutdownAct(ShutdownDialogAction::Exit)
, m_commandLineArgs(parseCommandLine(this->arguments()))
#ifndef DISABLE_WEBUI
, m_webui(nullptr)
#endif
{
qRegisterMetaType<Log::Msg>("Log::Msg");

Loading…
Cancel
Save