#include "wx/metafile.h"
#include "wx/clipbrd.h"
#include "wx/mac/private.h"
+#include "wx/graphics.h"
#include <stdio.h>
#include <string.h>
#if wxMAC_USE_CORE_GRAPHICS
#ifndef __LP64__
QDPictRef cgPictRef = M_METAFILEDATA->m_qdPictRef;
- CGContextRef cg = ((wxMacCGContext*)(dc->GetGraphicContext()))->GetNativeContext();
+ CGContextRef cg = (CGContextRef) dc->GetGraphicsContext()->GetNativeContext();
CGRect bounds = QDPictGetBounds( cgPictRef );
CGContextSaveGState( cg );
int width, int height,
const wxString& WXUNUSED(description) )
{
- wxASSERT_MSG( width <= 0 || height <= 0, wxT("no arbitration of metafile size supported") );
+ wxASSERT_MSG( width != 0 || height != 0, wxT("no arbitration of metafile size supported") );
wxASSERT_MSG( filename.empty(), wxT("no file based metafile support yet"));
m_metaFile = new wxMetaFile( filename );