From 307ae459f21dc9a1fea722d62a7404e492a4889a Mon Sep 17 00:00:00 2001 From: David Christenson Date: Tue, 7 Apr 2015 20:49:45 -0600 Subject: [PATCH] Fix variable names Change undeclared identifiers `running_` and `paramsQueue_` to their proper names. --- src/app/application.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/application.cpp b/src/app/application.cpp index 73470159f..d657800fd 100644 --- a/src/app/application.cpp +++ b/src/app/application.cpp @@ -220,10 +220,10 @@ bool Application::event(QEvent *ev) // Get the url instead path = static_cast(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 {