* Delete every character in the textbuffer */
| 110 | * Delete every character in the textbuffer |
| 111 | */ |
| 112 | void Textbuf::DeleteAll() |
| 113 | { |
| 114 | this->buf.clear(); |
| 115 | this->chars = 1; |
| 116 | this->pixels = this->caretpos = this->caretxoffs = 0; |
| 117 | this->markpos = this->markend = this->markxoffs = this->marklength = 0; |
| 118 | this->UpdateStringIter(); |
| 119 | } |
| 120 | |
| 121 | /** |
| 122 | * Insert a character to a textbuffer. If maxwidth of the Textbuf is zero, |
no test coverage detected