1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-02-05 03:14:44 +00:00

Merge pull request #2846 from Noctem/fixVariableNames

Fix variable names
This commit is contained in:
sledgehammer999 2015-05-10 17:53:26 +03:00
commit a3574d3e28

View File

@ -222,10 +222,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 {