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
|
||||
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 {
|
||||
|
|
Loading…
Reference in a new issue