]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/srchctlg.cpp
mention that it may be impossible to set the size of a wxStaticLine in the transversa...
[wxWidgets.git] / src / generic / srchctlg.cpp
index 49b469f03310bc7e7d9262a887b928ce4e4f0265..fd18cb07ea4c118dfdda651b4a4b1c9368cd518c 100644 (file)
@@ -532,6 +532,8 @@ void wxSearchCtrl::LayoutControls(int x, int y, int width, int height)
     y += BORDER;
     width -= horizontalBorder*2;
     height -= BORDER*2;
+    if (width < 0) width = 0;
+    if (height < 0) height = 0;
 
     wxSize sizeSearch(0,0);
     wxSize sizeCancel(0,0);
@@ -558,6 +560,7 @@ void wxSearchCtrl::LayoutControls(int x, int y, int width, int height)
         cancelMargin = 0;
     }
     wxCoord textWidth = width - sizeSearch.x - sizeCancel.x - searchMargin - cancelMargin - 1;
+    if (textWidth < 0) textWidth = 0;
 
     // position the subcontrols inside the client area