Skip to content

Commit

Permalink
Fix variable names
Browse files Browse the repository at this point in the history
Change undeclared identifiers `running_` and `paramsQueue_` to their
proper names.
  • Loading branch information
Noctem committed Apr 8, 2015
1 parent 7af4928 commit 307ae45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 307ae45

Please sign in to comment.