]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/m_image.cpp
Added chapter on collection and container classes to contents
[wxWidgets.git] / src / html / m_image.cpp
index 0f4027fb669bed2d488b538416fd08021e353f45..09396542cbdd74d8d19c6e8ab64c84b4ce96b17d 100644 (file)
@@ -14,7 +14,7 @@
 #include "wx/wxprec.h"
 
 #include "wx/defs.h"
-#if wxUSE_HTML
+#if wxUSE_HTML && wxUSE_STREAMS
 
 #ifdef __BORDLANDC__
 #pragma hdrstop
@@ -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;
 
-        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);