Browse Source

Fix variable names

Change undeclared identifiers `running_` and `paramsQueue_` to their
proper names.
adaptive-webui-19844
David Christenson 10 years ago
parent
commit
307ae459f2
No known key found for this signature in database
GPG Key ID: D49807DA9095FC64
  1. 4
      src/app/application.cpp

4
src/app/application.cpp

@ -220,10 +220,10 @@ bool Application::event(QEvent *ev) @@ -220,10 +220,10 @@ bool Application::event(QEvent *ev)
// Get the url instead
path = static_cast<QFileOpenEvent *>(ev)->url().toString();
qDebug("Received a mac file open event: %s", qPrintable(path));
if (running_)
if (m_running)
processParams(QStringList(path));
else
paramsQueue_.append(path);
m_paramsQueue.append(path);
return true;
}
else {

Loading…
Cancel
Save