Fixed Cygwin crash on toolbar tooltip
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12489 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
e757496edf
commit
a95821781b
@ -836,8 +836,9 @@ bool wxToolBar::MSWOnNotify(int WXUNUSED(idCtrl),
|
||||
// this case
|
||||
|
||||
size_t lenAnsi = help.Len();
|
||||
#ifdef __MWERKS__
|
||||
#if defined( __MWERKS__ ) || defined( __CYGWIN__ )
|
||||
// MetroWerks doesn't like calling mbstowcs with NULL argument
|
||||
// neither Cygwin does
|
||||
size_t lenUnicode = 2*lenAnsi;
|
||||
#else
|
||||
size_t lenUnicode = mbstowcs(NULL, help, lenAnsi);
|
||||
|
Loading…
Reference in New Issue
Block a user