]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/dnd/dnd.cpp
Applied patch 606235 (Cell overflow refresh fixed).
[wxWidgets.git] / samples / dnd / dnd.cpp
index 892a621cc17f8fda1a7660d07cca1daf85250d73..41b7851501f43d7cca178b81f99e0099e952e107 100644 (file)
@@ -1760,7 +1760,7 @@ void DnDShapeFrame::OnDrop(wxCoord x, wxCoord y, DnDShape *shape)
     wxPoint pt(x, y);
 
     wxString s;
-    s.Printf(wxT("Shape dropped at (%ld, %ld)"), pt.x, pt.y);
+    s.Printf(wxT("Shape dropped at (%d, %d)"), pt.x, pt.y);
     SetStatusText(s);
 
     shape->Move(pt);