Fix narrow/wide string concatenation in recently added wxSizerFlags assert.
This fixes MSVC build after r72434. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72436 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -126,8 +126,8 @@ public:
|
||||
wxSizerFlags& Border(int direction, int borderInPixels)
|
||||
{
|
||||
wxCHECK_MSG( !(direction & ~wxALL), *this,
|
||||
wxS("direction must be a combination of wxDirection enum "
|
||||
"values.") );
|
||||
wxS("direction must be a combination of wxDirection ")
|
||||
wxS("enum values.") );
|
||||
|
||||
m_flags &= ~wxALL;
|
||||
m_flags |= direction;
|
||||
|
Reference in New Issue
Block a user