Fix uninitialized variable.

This commit is contained in:
Relintai 2024-03-10 10:04:23 +01:00
parent aaf744aad0
commit 74c46ccfda

View File

@ -260,8 +260,8 @@ void ListWebPage::_notification(const int what) {
}
}
ListWebPage::ListWebPage() :
WebNode() {
ListWebPage::ListWebPage() {
paginate = true;
max_visible_navigation_links = 6;
entry_per_page = 4;
main_div_class = "list_page";