]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/gdicmn.cpp
fixing iterator comparison
[wxWidgets.git] / src / common / gdicmn.cpp
index 06117b98c239c3f16c74c0f5f21a9f6c57fe3125..e87361656b39dcdfac7d7c6a72f2077f2bba0ee5 100644 (file)
@@ -252,6 +252,11 @@ wxRect operator*(const wxRect& r1, const wxRect& r2)
     return wxRect(x1, y1, x2-x1, y2-y1);
 }
 
+wxRealPoint::wxRealPoint(const wxPoint& pt)
+ : x(pt.x), y(pt.y)
+{
+}
+
 // ============================================================================
 // wxColourDatabase
 // ============================================================================
@@ -521,8 +526,7 @@ void wxStockGDI::DeleteAll()
 {
     for (unsigned i = 0; i < ITEMCOUNT; i++)
     {
-        delete ms_stockObject[i];
-        ms_stockObject[i] = NULL;
+        wxDELETE(ms_stockObject[i]);
     }
 }