mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-12 16:23:07 -07:00
Fix argument name differ in definition & declaration
This commit is contained in:
parent
3739bcc270
commit
42c17ea5ce
10 changed files with 16 additions and 16 deletions
|
@ -178,11 +178,11 @@ QString Application::fileLoggerPath() const
|
|||
QVariant(specialFolderLocation(SpecialFolder::Data) + LOG_FOLDER)).toString();
|
||||
}
|
||||
|
||||
void Application::setFileLoggerPath(const QString &value)
|
||||
void Application::setFileLoggerPath(const QString &path)
|
||||
{
|
||||
if (m_fileLogger)
|
||||
m_fileLogger->changePath(value);
|
||||
settings()->storeValue(KEY_FILELOGGER_PATH, value);
|
||||
m_fileLogger->changePath(path);
|
||||
settings()->storeValue(KEY_FILELOGGER_PATH, path);
|
||||
}
|
||||
|
||||
bool Application::isFileLoggerBackup() const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue