Browse Source

Merge pull request #2846 from Noctem/fixVariableNames

Fix variable names
adaptive-webui-19844
sledgehammer999 10 years ago
parent
commit
a3574d3e28
  1. 4
      src/app/application.cpp

4
src/app/application.cpp

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

Loading…
Cancel
Save