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

@@ -72,10 +72,10 @@ template <typename Iterator> std::string getSharedDirectory(Iterator first, Iter
template <typename T> void withUnfilteredMenu(NC::Menu<T> &menu, std::function<void()> action)
{
bool is_filtered = menu.isFiltered();
menu.ShowAll();
menu.showAll();
action();
if (is_filtered)
menu.ShowFiltered();
menu.showFiltered();
}
void ParseArgv(int, char **);