]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/m_image.cpp
another file I added on the wxUniv branch and forgot to merge
[wxWidgets.git] / src / html / m_image.cpp
index 4f94570ff07e5bc93e1415e311bfc55c2c0fd05a..3db4b875eb46634ba794278e0740944387749659 100644 (file)
@@ -347,8 +347,8 @@ void wxHtmlImageCell::Draw(wxDC& dc, int x, int y, int view_y1, int view_y2)
         dc.SetUserScale(us_x * m_Scale, us_y * m_Scale);
     
 //      dc.DrawBitmap(*m_Image, x + m_PosX, y + m_PosY, (m_Image->GetMask() != (wxMask*) 0));
-        dc.DrawBitmap(*m_Image, (x + m_PosX) / m_Scale
-                                (y + m_PosY) / m_Scale, TRUE);
+        dc.DrawBitmap(*m_Image, (int) ((x + m_PosX) / m_Scale)
+                                (int) ((y + m_PosY) / m_Scale), TRUE);
         dc.SetUserScale(us_x, us_y);
     }
     wxHtmlCell::Draw(dc, x, y, view_y1, view_y2);