projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
old compilation fix for AIX from Ian Brown
[wxWidgets.git]
/
src
/
os2
/
dataobj.cpp
diff --git
a/src/os2/dataobj.cpp
b/src/os2/dataobj.cpp
index 80c9b8479c3e49d293bac6b061897026cc114850..b6738a028d52d91da7128ac36f3f3dfded8f07ac 100644
(file)
--- a/
src/os2/dataobj.cpp
+++ b/
src/os2/dataobj.cpp
@@
-31,6
+31,8
@@
#include "wx/log.h"
#include "wx/dataobj.h"
#include "wx/log.h"
#include "wx/dataobj.h"
+#include "wx/mstream.h"
+#include "wx/image.h"
#define INCL_DOS
#include <os2.h>
#define INCL_DOS
#include <os2.h>
@@
-47,11
+49,8
@@
// wxDataFormat
// ----------------------------------------------------------------------------
// wxDataFormat
// ----------------------------------------------------------------------------
-wxDataFormat::wxDataFormat(
- wxDataFormatId vType
-)
+wxDataFormat::wxDataFormat()
{
{
- PrepareFormats();
m_vType = wxDF_INVALID;
m_vFormat = 0;
}
m_vType = wxDF_INVALID;
m_vFormat = 0;
}
@@
-184,7
+183,7
@@
bool wxDataObject::IsSupportedFormat(
else
{
wxDataFormat* pFormats = new wxDataFormat[nFormatCount];
else
{
wxDataFormat* pFormats = new wxDataFormat[nFormatCount];
- GetAllFormats(
r
Formats
+ GetAllFormats(
p
Formats
,vDir
);
,vDir
);
@@
-192,11
+191,11
@@
bool wxDataObject::IsSupportedFormat(
for (n = 0; n < nFormatCount; n++)
{
for (n = 0; n < nFormatCount; n++)
{
- if (
r
Formats[n] == rFormat)
+ if (
p
Formats[n] == rFormat)
break;
}
break;
}
- delete []
r
Formats;
+ delete []
p
Formats;
// found?
return n < nFormatCount;
// found?
return n < nFormatCount;
@@
-215,11
+214,11
@@
bool wxFileDataObject::GetDataHere(
for (size_t i = 0; i < m_filenames.GetCount(); i++)
{
for (size_t i = 0; i < m_filenames.GetCount(); i++)
{
-
f
ilenames += m_filenames[i];
-
f
ilenames += (wxChar)0;
+
sF
ilenames += m_filenames[i];
+
sF
ilenames += (wxChar)0;
}
}
- memcpy(pBuf,
filenames.mbc_str(), f
ilenames.Len() + 1);
+ memcpy(pBuf,
sFilenames.mbc_str(), sF
ilenames.Len() + 1);
return TRUE;
}
return TRUE;
}
@@
-314,6
+313,7
@@
bool wxBitmapDataObject::SetData(
memcpy(m_pngData, pBuf, m_pngSize);
memcpy(m_pngData, pBuf, m_pngSize);
+#if wxUSE_STREAMS
wxMemoryInputStream vMstream((char*)m_pngData, m_pngSize);
wxImage vImage;
wxPNGHandler vHandler;
wxMemoryInputStream vMstream((char*)m_pngData, m_pngSize);
wxImage vImage;
wxPNGHandler vHandler;
@@
-323,7
+323,9
@@
bool wxBitmapDataObject::SetData(
return FALSE;
}
return FALSE;
}
- m_bitmap = vImage.ConvertToBitmap();
+ m_bitmap = wxBitmap(vImage);
+#endif //wxUSE_STREAMS
+
return m_bitmap.Ok();
}
return m_bitmap.Ok();
}
@@
-332,16
+334,19
@@
void wxBitmapDataObject::DoConvertToPng()
if (!m_bitmap.Ok())
return;
if (!m_bitmap.Ok())
return;
- wxImage vImage(m_bitmap);
+#if wxUSE_STREAMS
+ wxImage vImage = m_bitmap.ConvertToImage();
wxPNGHandler vHandler;
wxCountingOutputStream vCount;
wxPNGHandler vHandler;
wxCountingOutputStream vCount;
- vHandler.SaveFile(&
r
Image, vCount);
+ vHandler.SaveFile(&
v
Image, vCount);
m_pngSize = vCount.GetSize() + 100; // sometimes the size seems to vary ???
m_pngData = malloc(m_pngSize);
m_pngSize = vCount.GetSize() + 100; // sometimes the size seems to vary ???
m_pngData = malloc(m_pngSize);
- wxMemoryOutputStream mstream((char*) m_pngData, m_pngSize);
+ wxMemoryOutputStream vMstream((char*) m_pngData, m_pngSize);
+
vHandler.SaveFile(&vImage, vMstream );
vHandler.SaveFile(&vImage, vMstream );
+#endif
}
}