did astyle on the source files
This commit is contained in:
@ -17,14 +17,16 @@ void cursor::show() const {
|
||||
refresh();
|
||||
}
|
||||
|
||||
void cursor::print_char(const position &pos, const char ch, const int attrs) const {
|
||||
attrset(attrs);
|
||||
mvaddch(pos.y,pos.x,ch);
|
||||
void cursor::print_char(const position &pos, const char ch,
|
||||
const int attrs) const {
|
||||
attrset(attrs);
|
||||
mvaddch(pos.y, pos.x, ch);
|
||||
}
|
||||
|
||||
void cursor::print_str(const position &pos, const std::string str, const int attrs) const {
|
||||
attrset(attrs);
|
||||
mvaddstr(pos.y, pos.x, str.c_str());
|
||||
void cursor::print_str(const position &pos, const std::string str,
|
||||
const int attrs) const {
|
||||
attrset(attrs);
|
||||
mvaddstr(pos.y, pos.x, str.c_str());
|
||||
}
|
||||
|
||||
bool check_terminal_size() {
|
||||
|
Reference in New Issue
Block a user