]> git.saurik.com Git - wxWidgets.git/commitdiff
Check validity of wxSizerFlags::Border() direction parameter.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 8 Sep 2012 15:46:50 +0000 (15:46 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 8 Sep 2012 15:46:50 +0000 (15:46 +0000)
Catch the misguided attempts to pass the size of the border as the first
parameter of the Border(direction, size) overload.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72434 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/sizer.h

index ff462469b230d46a5342a1a362c9de07328bfd13..41da10945d0adad0577c6ae1d0dd3d62602f6018 100644 (file)
@@ -125,6 +125,10 @@ public:
 
     wxSizerFlags& Border(int direction, int borderInPixels)
     {
+        wxCHECK_MSG( !(direction & ~wxALL), *this,
+                     wxS("direction must be a combination of wxDirection enum "
+                         "values.") );
+
         m_flags &= ~wxALL;
         m_flags |= direction;