1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-11 23:37:59 +00:00

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 {