mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-02-10 13:54:23 +00:00
Merge pull request #2846 from Noctem/fixVariableNames
Fix variable names
This commit is contained in:
commit
a3574d3e28
@ -222,10 +222,10 @@ bool Application::event(QEvent *ev)
|
|||||||
// Get the url instead
|
// Get the url instead
|
||||||
path = static_cast<QFileOpenEvent *>(ev)->url().toString();
|
path = static_cast<QFileOpenEvent *>(ev)->url().toString();
|
||||||
qDebug("Received a mac file open event: %s", qPrintable(path));
|
qDebug("Received a mac file open event: %s", qPrintable(path));
|
||||||
if (running_)
|
if (m_running)
|
||||||
processParams(QStringList(path));
|
processParams(QStringList(path));
|
||||||
else
|
else
|
||||||
paramsQueue_.append(path);
|
m_paramsQueue.append(path);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user