]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed typo bug in my last commit that caused image size (-1,-1)
authorVáclav Slavík <vslavik@fastmail.fm>
Tue, 15 Feb 2000 22:07:51 +0000 (22:07 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Tue, 15 Feb 2000 22:07:51 +0000 (22:07 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6057 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/html/m_image.cpp

index 0f4027fb669bed2d488b538416fd08021e353f45..06a78d6b82b0b35d74ed6f04c4aa73ce5300df1a 100644 (file)
@@ -277,8 +277,8 @@ wxHtmlImageCell::wxHtmlImageCell(wxFSFile *input, int w, int h, double scale, in
         if (w != -1) m_Width = w; else m_Width = ww;
         if (h != -1) m_Height = h; else m_Height = hh;
 
         if (w != -1) m_Width = w; else m_Width = ww;
         if (h != -1) m_Height = h; else m_Height = hh;
 
-        m_Width = (int)(scale * (double)w);
-        m_Height = (int)(scale * (double)h);
+        m_Width = (int)(scale * (double)m_Width);
+        m_Height = (int)(scale * (double)m_Height);
 
         if ((m_Width != ww) || (m_Height != hh)) {
             wxImage img2 = img -> Scale(m_Width, m_Height);
 
         if ((m_Width != ww) || (m_Height != hh)) {
             wxImage img2 = img -> Scale(m_Width, m_Height);