mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-26 11:16:20 +03:00
Fix variable names
Change undeclared identifiers `running_` and `paramsQueue_` to their proper names.
This commit is contained in:
parent
7af4928b18
commit
307ae459f2
1 changed files with 2 additions and 2 deletions
|
@ -220,10 +220,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…
Reference in a new issue