// Purpose:
// Author: Robert Roebling, Vaclav Slavik
// RCS-ID: $Id$
-// Copyright: (c) 1998 Robert Roebling, 2001 Vaclav Slavik
+// Copyright: (c) 1998 Robert Roebling,
+// 2001 SciTech Software, Inc. (www.scitechsoft.com)
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
-#pragma implementation "dcmemory.h"
-#endif
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
void wxMemoryDC::SelectObject(const wxBitmap& bitmap)
{
- SetMGLDC(NULL, TRUE);
- m_selected = bitmap;
-
if ( bitmap.Ok() )
+ {
+ m_selected = bitmap;
SetMGLDC(m_selected.CreateTmpDC(), TRUE);
+ }
}
void wxMemoryDC::SetPen(const wxPen &pen)