]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/motif/dcmemory.h
use wxSizerFlags and updated CreateButtonSizer() in all generic dialogs
[wxWidgets.git] / include / wx / motif / dcmemory.h
index ee0cf492ae1dc673eb6b9206f4215cc683c23272..121dda66041079b25ee626bbc05e7a3ad4112ab2 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
 /////////////////////////////////////////////////////////////////////////////
-// Name:        dcmemory.h
+// Name:        wx/motif/dcmemory.h
 // Purpose:     wxMemoryDC class
 // Author:      Julian Smart
 // Modified by:
 // Purpose:     wxMemoryDC class
 // Author:      Julian Smart
 // Modified by:
 class WXDLLIMPEXP_CORE wxMemoryDC : public wxWindowDC
 {
     DECLARE_DYNAMIC_CLASS(wxMemoryDC)
 class WXDLLIMPEXP_CORE wxMemoryDC : public wxWindowDC
 {
     DECLARE_DYNAMIC_CLASS(wxMemoryDC)
-        
+
 public:
     wxMemoryDC();
     wxMemoryDC( wxDC *dc ); // Create compatible DC
 public:
     wxMemoryDC();
     wxMemoryDC( wxDC *dc ); // Create compatible DC
-    ~wxMemoryDC();
-    
+    virtual ~wxMemoryDC();
+
     virtual void SelectObject( const wxBitmap& bitmap );
     virtual void SelectObject( const wxBitmap& bitmap );
-    
+
     void DoGetSize( int *width, int *height ) const;
     void DoGetSize( int *width, int *height ) const;
-    
+
     wxBitmap& GetBitmap() const { return (wxBitmap&) m_bitmap; }
     wxBitmap& GetBitmap() const { return (wxBitmap&) m_bitmap; }
-    
+
 private:
     friend class wxPaintDC;
 private:
     friend class wxPaintDC;
-    
+
     wxBitmap  m_bitmap;
 };
 
     wxBitmap  m_bitmap;
 };