]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/notebook.cpp
Don't include sys/socket.h on cygwin in windows mode
[wxWidgets.git] / src / msw / notebook.cpp
index 3f26c2a6ebeecb0c9f4427d9d1e241ed0362afdf..eb4410c99cce3b35e5ed0ba54807773e183e471b 100644 (file)
@@ -258,6 +258,13 @@ bool wxNotebook::Create(wxWindow *parent,
                         long style,
                         const wxString& name)
 {
+#ifdef __WXWINCE__
+    // Not sure why, but without this style, there is no border
+    // around the notebook tabs.
+    if (style & wxNB_FLAT)
+        style |= wxBORDER_SUNKEN;
+#endif
+    
     // comctl32.dll 6.0 doesn't support non-top tabs with visual styles (the
     // control is simply not rendered correctly), so disable them in this case
     const int verComCtl32 = wxApp::GetComCtl32Version();
@@ -765,7 +772,7 @@ void wxNotebook::OnSize(wxSizeEvent& event)
     {
         // Prevents droppings on resize, but does cause some flicker
         // when there are no pages.
-        Refresh(false);
+        Refresh();
         event.Skip();
         return;
     }