]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/dcmemory.cpp
Trace module initialization and cleanup.
[wxWidgets.git] / src / motif / dcmemory.cpp
index 98cd0efd3e5c15c20f3f29e991574ee3231ce105..19d75551f996e650e4725a3e61be498aeabd480a 100644 (file)
@@ -9,10 +9,6 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma implementation "dcmemory.h"
-#endif
-
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
@@ -55,10 +51,6 @@ wxMemoryDC::wxMemoryDC(void)
 
     m_backgroundPixel = (int) gcvalues.background;
 
-    // Get the current Font so we can set it back later
-    XGCValues valReturn;
-    XGetGCValues((Display*) m_display, (GC) m_gc, GCFont, &valReturn);
-    m_oldFont = (WXFont) valReturn.font;
     SetBrush (* wxWHITE_BRUSH);
     SetPen (* wxBLACK_PEN);
     SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT));
@@ -86,10 +78,6 @@ wxMemoryDC::wxMemoryDC( wxDC* dc )
 
     m_backgroundPixel = (int) gcvalues.background;
 
-    // Get the current Font so we can set it back later
-    XGCValues valReturn;
-    XGetGCValues((Display*) m_display, (GC) m_gc, GCFont, &valReturn);
-    m_oldFont = (WXFont) valReturn.font;
     SetBrush (* wxWHITE_BRUSH);
     SetPen (* wxBLACK_PEN);
 };
@@ -124,11 +112,6 @@ void wxMemoryDC::SelectObject( const wxBitmap& bitmap )
         m_backgroundPixel = (int) gcvalues.background;
         m_ok = true;
 
-        // Get the current Font so we can set it back later
-        XGCValues valReturn;
-        XGetGCValues((Display*) m_display, (GC) m_gc, GCFont, &valReturn);
-        m_oldFont = (WXFont) valReturn.font;
-
         SetBrush (* wxWHITE_BRUSH);
         SetPen (* wxBLACK_PEN);
     }