]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/ogl/bmpshape.cpp
More packager scripts updates. The RPMs will now install icons and
[wxWidgets.git] / contrib / src / ogl / bmpshape.cpp
index 359457b8ff28ce0fc3779c2a7ce4c6eeb43f9110..682bb2ebdcc4dfdb13204b3425194aa1da53aace 100644 (file)
@@ -52,7 +52,7 @@ void wxBitmapShape::OnDraw(wxDC& dc)
   if (!m_bitmap.Ok())
     return;
 
-  double x, y;
+  int x, y;
   x = WXROUND(m_xpos - m_bitmap.GetWidth() / 2.0);
   y = WXROUND(m_ypos - m_bitmap.GetHeight() / 2.0);
   dc.DrawBitmap(m_bitmap, x, y, true);