diff options
Diffstat (limited to '')
-rw-r--r-- | gui/pages.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/pages.hpp b/gui/pages.hpp index f0b2155c4..81112f979 100644 --- a/gui/pages.hpp +++ b/gui/pages.hpp @@ -46,7 +46,7 @@ class HardwareKeyboard; class Page { public: - Page(xml_node<>* page, std::vector<xml_node<>*> *templates = NULL); + Page(xml_node<>* page, std::vector<xml_node<>*> *templates); virtual ~Page(); std::string GetName(void) { return mName; } @@ -72,7 +72,7 @@ protected: COLOR mBackground; protected: - bool ProcessNode(xml_node<>* page, std::vector<xml_node<>*> *templates = NULL, int depth = 0); + bool ProcessNode(xml_node<>* page, std::vector<xml_node<>*> *templates, int depth); }; class PageSet |