fix a bug that msgbox uses local codepage

This commit is contained in:
Jinhao
2016-07-09 10:27:18 +08:00
parent e73fc679f4
commit 6ee314a9ea
2 changed files with 26 additions and 6 deletions

View File

@@ -61,6 +61,12 @@ namespace nana
/// Writes a string to the buffer.
msgbox & operator<<(const wchar_t*);
/// Writes a UTF-8 string to the buffer.
msgbox & operator<<(const std::string&);
/// Writes a UTF-8 string to the buffer.
msgbox & operator<<(const char*);
/// Writes a string to the buffer.
msgbox & operator<<(const nana::charset&);