changed naming scheme

This commit is contained in:
2024-07-07 20:10:31 -04:00
parent d85f375fbe
commit 6f998d8523
7 changed files with 32 additions and 32 deletions

View File

@ -24,10 +24,10 @@ public:
virtual void clear();
virtual void print_char(const position &pos, const char ch,
const int attr =
const int attrs =
A_NORMAL | COLOR_PAIR(COLOR_WHITE)) = 0;
virtual void print_str(const position &pos, const std::string &str,
const int attr =
const int attrs =
A_NORMAL | COLOR_PAIR(COLOR_WHITE)) = 0;
// default arguments are to be set in the base class's declaration
};