Fix variable names

Change undeclared identifiers `running_` and `paramsQueue_` to their
proper names.
This commit is contained in:
David Christenson 2015-04-07 20:49:45 -06:00
parent 7af4928b18
commit 307ae459f2
No known key found for this signature in database
GPG key ID: D49807DA9095FC64

View file

@ -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 {