]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/datstrm.cpp
Changed name of controls sample.
[wxWidgets.git] / src / common / datstrm.cpp
index c79eedb07a98337cf81833b13c556925a9edca4a..17f2100ebe1516aceeeb5960f46d757ec19c8e6b 100644 (file)
@@ -190,8 +190,8 @@ void wxDataStream::WriteString(const wxString& string)
   if (!m_ostream)
     return;
 
-  Write32(tmp_string.Length());
-  m_ostream->write((const char *) tmp_string, tmp_string.Length());
+  Write32(string.Length());
+  m_ostream->write((const char *) string, string.Length());
 }
 
 // Must be at global scope for VC++ 5
@@ -204,6 +204,11 @@ void wxDataStream::WriteDouble(double d)
   if (!m_ostream)
     return;
 
+#if USE_APPLE_IEEE
   ConvertToIeeeExtended(d, (unsigned char *)buf);
+#else
+#      pragma warning "wxDataStream::WriteDouble() not using IeeeExtended - will not work!"
+ buf[0] = '\0';
+#endif
   m_ostream->write(buf, 10);
 }