Correct typo

This commit is contained in:
Arnaud Bienner 2013-07-28 15:37:02 +02:00
parent f75c0a2b97
commit 00a0e990fd
3 changed files with 5 additions and 5 deletions

View File

@ -162,7 +162,7 @@ void PlaylistTabBar::Close() {
QSettings s;
s.beginGroup(kSettingsGroup);
const bool ask_for_delete = s.value("warm_close_playlist", true).toBool();
const bool ask_for_delete = s.value("warn_close_playlist", true).toBool();
if (ask_for_delete && !manager_->IsPlaylistFavorite(playlist_id)) {
if (QMessageBox::question(this,

View File

@ -127,7 +127,7 @@ void BehaviourSettingsPage::Load() {
s.endGroup();
s.beginGroup(PlaylistTabBar::kSettingsGroup);
ui_->b_warm_close_playlist_->setChecked(s.value("warm_close_playlist", true).toBool());
ui_->b_warn_close_playlist_->setChecked(s.value("warn_close_playlist", true).toBool());
s.endGroup();
}
@ -166,7 +166,7 @@ void BehaviourSettingsPage::Save() {
s.endGroup();
s.beginGroup(PlaylistTabBar::kSettingsGroup);
s.setValue("warm_close_playlist", ui_->b_warm_close_playlist_->isChecked());
s.setValue("warn_close_playlist", ui_->b_warn_close_playlist_->isChecked());
s.endGroup();
}

View File

@ -39,9 +39,9 @@
</widget>
</item>
<item>
<widget class="QCheckBox" name="b_warm_close_playlist_">
<widget class="QCheckBox" name="b_warn_close_playlist_">
<property name="text">
<string>Warm me when closing a playlist tab</string>
<string>Warn me when closing a playlist tab</string>
</property>
</widget>
</item>