]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/dc.cpp
Don't call StartingKey if the key was F2
[wxWidgets.git] / src / msw / dc.cpp
index df9046419a4cecf948aa8e72a295550f34948a12..22e2455e0a6217250d2da69fb63100693f517083 100644 (file)
@@ -908,8 +908,11 @@ void wxDC::DoDrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height)
         // I wonder if this shouldn´t be done after the LOG2DEV() conversions. RR.
         if ( m_pen.GetStyle() == wxTRANSPARENT )
         {
+            // Apparently not needed for WinCE (see e.g. Life! demo)
+#ifndef __WXWINCE__
             x2++;
             y2++;
+#endif
         }
 
         (void)Rectangle(GetHdc(), XLOG2DEV(x), YLOG2DEV(y), XLOG2DEV(x2), YLOG2DEV(y2));