]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dcmemory.h
Export recently added wxRichTextXMLHelper to fix link errors.
[wxWidgets.git] / include / wx / dcmemory.h
index d84d5be6d853c5658b21ce92b4807477e1d6e180..d5f301c942ff924989d17162228c247761e7648f 100644 (file)
@@ -5,7 +5,6 @@
 // Modified by:
 // Created:
 // Copyright:   (c) Julian Smart
-// RCS-ID:      $Id$
 // Licence:     wxWindows Licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -25,13 +24,13 @@ public:
     wxMemoryDC();
     wxMemoryDC( wxBitmap& bitmap );
     wxMemoryDC( wxDC *dc );
-    
+
     // select the given bitmap to draw on it
     void SelectObject(wxBitmap& bmp);
 
     // select the given bitmap for read-only
     void SelectObjectAsSource(const wxBitmap& bmp);
-    
+
     // get selected bitmap
     const wxBitmap& GetSelectedBitmap() const;
     wxBitmap& GetSelectedBitmap();
@@ -39,7 +38,7 @@ public:
 private:
     DECLARE_DYNAMIC_CLASS(wxMemoryDC)
 };
-    
+
 
 #endif
     // _WX_DCMEMORY_H_BASE_