Fix argument name differ in definition & declaration

This commit is contained in:
Chocobo1 2017-05-09 13:55:24 +08:00
parent 3739bcc270
commit 42c17ea5ce
10 changed files with 16 additions and 16 deletions

View file

@ -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