Compilation fixes.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24158 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -222,7 +222,7 @@ wxMetafileDC::~wxMetafileDC()
|
|||||||
}
|
}
|
||||||
|
|
||||||
void wxMetafileDC::GetTextExtent(const wxString& string, long *x, long *y,
|
void wxMetafileDC::GetTextExtent(const wxString& string, long *x, long *y,
|
||||||
long *descent, long *externalLeading, wxFont *theFont, bool use16bit) const
|
long *descent, long *externalLeading, wxFont *theFont, bool WXUNUSED(use16bit)) const
|
||||||
{
|
{
|
||||||
wxFont *fontToUse = theFont;
|
wxFont *fontToUse = theFont;
|
||||||
if (!fontToUse)
|
if (!fontToUse)
|
||||||
@@ -382,7 +382,7 @@ bool wxMakeMetafilePlaceable(const wxString& filename, int x1, int y1, int x2, i
|
|||||||
|
|
||||||
wxChar tempFileBuf[256];
|
wxChar tempFileBuf[256];
|
||||||
wxGetTempFileName(wxT("mf"), tempFileBuf);
|
wxGetTempFileName(wxT("mf"), tempFileBuf);
|
||||||
FILE *fHandle = wxFopen(wxFNCONV(wxConvFile), _T("wb"));
|
FILE *fHandle = wxFopen(wxFNCONV(tempFileBuf), _T("wb"));
|
||||||
if (!fHandle)
|
if (!fHandle)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
fwrite((void *)&header, sizeof(unsigned char), sizeof(mfPLACEABLEHEADER), fHandle);
|
fwrite((void *)&header, sizeof(unsigned char), sizeof(mfPLACEABLEHEADER), fHandle);
|
||||||
|
Reference in New Issue
Block a user