CComponentsText: add switch for utf8 disable/enable

Origin commit data
------------------
Commit: ccdaacb0a0
Author: Thilo Graf <dbt@novatux.de>
Date: 2015-07-12 (Sun, 12 Jul 2015)
This commit is contained in:
2015-07-12 18:38:32 +02:00
committed by Jacek Jendrzej
parent c86b9a47f9
commit 215d6c1e46
3 changed files with 8 additions and 1 deletions

View File

@@ -194,7 +194,7 @@ class CTextBox
void setWindowMinDimensions(const int width, const int height);
void setFontUseDigitHeight(bool set=true);
void enableUTF8(bool enable = true){m_utf8_encoded = enable;}
void disableUTF8(bool enable = false){enableUTF8(false);}
void disableUTF8(bool enable = false){enableUTF8(enable);}
inline bool isPainted(void) {if( frameBuffer == NULL) return (false); else return (true);};
inline CBox getWindowsPos(void) {return(m_cFrame);};