summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2019-02-18 13:30:21 +0300
committerGeorge Hazan <ghazan@miranda.im>2019-02-19 19:24:16 +0300
commitd05f7096cd384679e9dcab92a6efc81c68977628 (patch)
tree470524bc1be81ab6c563cfcc326c272d5dfe7b33 /include
parent2e125090810014fa46cd9bb27b2e4daea32ba2f4 (diff)
utf8 wrappers for CCtrlBase::GetText
Diffstat (limited to 'include')
-rw-r--r--include/m_gui.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/m_gui.h b/include/m_gui.h
index 9230708e8e..41fc37a9a7 100644
--- a/include/m_gui.h
+++ b/include/m_gui.h
@@ -549,10 +549,12 @@ public:
void SetInt(int value);
wchar_t* GetText();
- char * GetTextA();
+ char* GetTextA();
+ char* GetTextU();
- wchar_t* GetText(wchar_t *buf, int size);
- char* GetTextA(char *buf, int size);
+ wchar_t* GetText(wchar_t *buf, size_t size);
+ char* GetTextA(char *buf, size_t size);
+ char* GetTextU(char *buf, size_t size);
int GetInt();