Renamed refresh to refreshView to avoid base class overrides

This commit is contained in:
emeric
2018-04-10 13:45:56 +02:00
parent 2f7697d278
commit f604541812
4 changed files with 8 additions and 8 deletions
+3 -3
View File
@@ -47,14 +47,14 @@ UsersView::UsersView(Wt::WContainerWidget *parent)
wApp->internalPathChanged().connect(std::bind([=]
{
refresh();
refreshView();
}));
refresh();
refreshView();
}
void
UsersView::refresh()
UsersView::refreshView()
{
if (!wApp->internalPathMatches("/admin/users"))
return;