change naming conventions in NC namespace

This commit is contained in:
Andrzej Rybczak
2012-09-03 15:34:07 +02:00
parent 6f918091d9
commit af2cdca3d0
39 changed files with 1752 additions and 1898 deletions

View File

@@ -32,12 +32,12 @@ namespace Display
template <typename T> void Default(NC::Menu<T> &menu)
{
menu << menu.Drawn().value();
menu << menu.drawn().value();
}
template <typename A, typename B> void Pair(NC::Menu< std::pair<A, B> > &menu)
{
menu << menu.Drawn().value().first;
menu << menu.drawn().value().first;
}
void SongsInColumns(NC::Menu<MPD::Song> &menu, HasSongs &screen);