(svn r22346) -Cleanup: Textbuf::max_pixels is not required anymore.

This commit is contained in:
terkhen
2011-04-17 18:45:36 +00:00
parent 5bb7a48cd2
commit 8bc9925ade
2 changed files with 1 additions and 4 deletions

View File

@@ -22,7 +22,6 @@ struct Textbuf {
char *buf; ///< buffer in which text is saved
uint16 max_bytes; ///< the maximum size of the buffer in bytes (including terminating '\0')
uint16 max_chars; ///< the maximum size of the buffer in characters (including terminating '\0')
uint16 max_pixels; ///< the maximum size of the buffer in pixels
uint16 bytes; ///< the current size of the string in bytes (including terminating '\0')
uint16 chars; ///< the current size of the string in characters (including terminating '\0')
uint16 pixels; ///< the current size of the string in pixels