added wxConvertTo/FromIeeeExtended() synonyms for ConvertTo/FromIeeeExtended() and deprecated the latters; also added missing dll export declarations for them (patch 1772233)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48084 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-08-15 11:07:13 +00:00
parent de38156422
commit 225dfbc517
3 changed files with 23 additions and 6 deletions

View File

@@ -92,7 +92,7 @@ double wxDataInputStream::ReadDouble()
char buf[10];
m_input->Read(buf, 10);
return ConvertFromIeeeExtended((const wxInt8 *)buf);
return wxConvertFromIeeeExtended((const wxInt8 *)buf);
#else
return 0.0;
#endif
@@ -529,7 +529,7 @@ void wxDataOutputStream::WriteDouble(double d)
char buf[10];
#if wxUSE_APPLE_IEEE
ConvertToIeeeExtended(d, (wxInt8 *)buf);
wxConvertToIeeeExtended(d, (wxInt8 *)buf);
#else
#if !defined(__VMS__) && !defined(__GNUG__)
# pragma warning "wxDataOutputStream::WriteDouble() not using IeeeExtended - will not work!"