mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 15:07:22 -06:00
Fixed typo in function name isSplashScreenDisabled()
This commit is contained in:
@@ -512,7 +512,7 @@ void OptionsDialog::saveOptions()
|
||||
pref->setMinimizeToTray(minimizeToTray());
|
||||
pref->setStartMinimized(startMinimized());
|
||||
#endif
|
||||
pref->setSplashScreenDisabled(isSlashScreenDisabled());
|
||||
pref->setSplashScreenDisabled(isSplashScreenDisabled());
|
||||
pref->setConfirmOnExit(m_ui->checkProgramExitConfirm->isChecked());
|
||||
pref->setDontConfirmAutoExit(!m_ui->checkProgramAutoExitConfirm->isChecked());
|
||||
pref->setPreventFromSuspend(preventFromSuspend());
|
||||
@@ -1320,7 +1320,7 @@ void OptionsDialog::enableProxy(int index)
|
||||
}
|
||||
}
|
||||
|
||||
bool OptionsDialog::isSlashScreenDisabled() const
|
||||
bool OptionsDialog::isSplashScreenDisabled() const
|
||||
{
|
||||
return !m_ui->checkShowSplash->isChecked();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user