/////////////////////////////////////////////////////////////////////////////
-// Name: dcmemory.cpp
+// Name: src/gtk/dcmemory.cpp
// Purpose:
// Author: Robert Roebling
// RCS-ID: $Id$
wxMemoryDC::wxMemoryDC() : wxWindowDC()
{
- m_ok = FALSE;
+ m_ok = false;
m_cmap = gtk_widget_get_default_colormap();
wxMemoryDC::wxMemoryDC( wxDC *WXUNUSED(dc) )
: wxWindowDC()
{
- m_ok = FALSE;
+ m_ok = false;
m_cmap = gtk_widget_get_default_colormap();
m_selected.PurgeOtherRepresentations(wxBitmap::Pixmap);
- m_isMemDC = TRUE;
+ m_isMemDC = true;
SetUpDC();
}
else
{
- m_ok = FALSE;
+ m_ok = false;
m_window = (GdkWindow *) NULL;
}
}
if (height) (*height) = 0;
}
}
-
-