rename Menu::BoldOption() to Menu::Bold()

This commit is contained in:
Andrzej Rybczak
2009-09-19 02:44:44 +02:00
parent 3bdb798852
commit ad685091bc
9 changed files with 21 additions and 21 deletions

View File

@@ -236,7 +236,7 @@ void SearchEngine::EnterPressed()
}
default:
{
w->BoldOption(w->Choice(), myPlaylist->Add(*w->Current().second, w->isBold(), 1));
w->Bold(w->Choice(), myPlaylist->Add(*w->Current().second, w->isBold(), 1));
break;
}
}
@@ -256,7 +256,7 @@ void SearchEngine::SpacePressed()
return;
}
w->BoldOption(w->Choice(), myPlaylist->Add(*w->Current().second, w->isBold(), 0));
w->Bold(w->Choice(), myPlaylist->Add(*w->Current().second, w->isBold(), 0));
w->Scroll(wDown);
}
@@ -321,7 +321,7 @@ void SearchEngine::UpdateFoundList()
break;
}
}
w->BoldOption(i, bold);
w->Bold(i, bold);
bold = 0;
}
}