checking setup conditions for viewelements

This commit is contained in:
louis
2015-03-13 18:00:39 +01:00
parent b84af82ef5
commit 229b1274a5
21 changed files with 129 additions and 53 deletions

View File

@@ -205,7 +205,10 @@ void cView::ActivateScrolling(void) {
}
}
bool cView::ViewElementImplemented(eViewElement ve) {
bool cView::ExecuteViewElement(eViewElement ve) {
bool doExecute = tmplView->ExecuteView(ve);
if (!doExecute)
return false;
return tmplView->GetNumPixmapsViewElement(ve);
}