]> git.saurik.com Git - wxWidgets.git/commitdiff
removed GDI lists from wxMGL
authorVáclav Slavík <vslavik@fastmail.fm>
Wed, 21 Nov 2001 00:00:29 +0000 (00:00 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Wed, 21 Nov 2001 00:00:29 +0000 (00:00 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12547 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/mgl/bitmap.h
include/wx/mgl/brush.h
include/wx/mgl/font.h
include/wx/mgl/pen.h

index 0a0043829e4b61022aa438f3be9d17a85ad23b00..3ac421b830e94a251a6520d185da75b57c838570 100644 (file)
@@ -75,7 +75,7 @@ private:
 class WXDLLEXPORT wxBitmap: public wxBitmapBase
 {
 public:
 class WXDLLEXPORT wxBitmap: public wxBitmapBase
 {
 public:
-    wxBitmap();
+    wxBitmap() {}
     wxBitmap(int width, int height, int depth = -1);
     wxBitmap(const char bits[], int width, int height, int depth = 1);
     wxBitmap(const char **bits) { CreateFromXpm(bits); }
     wxBitmap(int width, int height, int depth = -1);
     wxBitmap(const char bits[], int width, int height, int depth = 1);
     wxBitmap(const char **bits) { CreateFromXpm(bits); }
@@ -83,7 +83,7 @@ public:
     wxBitmap(const wxBitmap& bmp);
     wxBitmap(const wxString &filename, wxBitmapType type = wxBITMAP_TYPE_RESOURCE);
     wxBitmap(const wxImage& image, int depth = -1);
     wxBitmap(const wxBitmap& bmp);
     wxBitmap(const wxString &filename, wxBitmapType type = wxBITMAP_TYPE_RESOURCE);
     wxBitmap(const wxImage& image, int depth = -1);
-    ~wxBitmap();
+    ~wxBitmap() {}
     wxBitmap& operator = (const wxBitmap& bmp);
     bool operator == (const wxBitmap& bmp) const;
     bool operator != (const wxBitmap& bmp) const;
     wxBitmap& operator = (const wxBitmap& bmp);
     bool operator == (const wxBitmap& bmp) const;
     bool operator != (const wxBitmap& bmp) const;
index 6b871ebded5fad9cf0e304906b2c3efba7d647c4..5d12600bad1b903dc98b18c1b17e691468d8f484 100644 (file)
@@ -35,11 +35,11 @@ class WXDLLEXPORT wxBrush;
 class WXDLLEXPORT wxBrush: public wxGDIObject
 {
 public:
 class WXDLLEXPORT wxBrush: public wxGDIObject
 {
 public:
-    wxBrush();
+    wxBrush() {}
     wxBrush(const wxColour &colour, int style);
     wxBrush(const wxBitmap &stippleBitmap);
     wxBrush(const wxBrush &brush);
     wxBrush(const wxColour &colour, int style);
     wxBrush(const wxBitmap &stippleBitmap);
     wxBrush(const wxBrush &brush);
-    ~wxBrush();
+    ~wxBrush() {}
     wxBrush& operator = (const wxBrush& brush);
     bool operator == (const wxBrush& brush) const;
     bool operator != (const wxBrush& brush) const;
     wxBrush& operator = (const wxBrush& brush);
     bool operator == (const wxBrush& brush) const;
     bool operator != (const wxBrush& brush) const;
index 335c54636be8eb7cdc13f6c4e214e11da3ea7b83..29f2fd60930e996e80f7cd85b7ffc894aa084ba4 100644 (file)
@@ -67,7 +67,7 @@ public:
 
     bool Create(const wxNativeFontInfo& fontinfo);
 
 
     bool Create(const wxNativeFontInfo& fontinfo);
 
-    ~wxFont();
+    ~wxFont() {}
 
     // assignment
     wxFont& operator=(const wxFont& font);
 
     // assignment
     wxFont& operator=(const wxFont& font);
@@ -98,7 +98,7 @@ public:
 
 protected:
     // common part of all ctors
 
 protected:
     // common part of all ctors
-    void Init();
+    void Init() {}
 
 private:
     DECLARE_DYNAMIC_CLASS(wxFont)
 
 private:
     DECLARE_DYNAMIC_CLASS(wxFont)
index 5bc5dcfaa27b7b89fce0e8d16b3f1e5b83c63c1d..04417583010bdc9b49d800e9726c360e50d132b5 100644 (file)
@@ -35,11 +35,11 @@ class WXDLLEXPORT wxPen;
 class WXDLLEXPORT wxPen: public wxGDIObject
 {
 public:
 class WXDLLEXPORT wxPen: public wxGDIObject
 {
 public:
-    wxPen();
+    wxPen() {}
     wxPen(const wxColour &colour, int width, int style);
     wxPen(const wxBitmap& stipple, int width);
     wxPen(const wxPen& pen);
     wxPen(const wxColour &colour, int width, int style);
     wxPen(const wxBitmap& stipple, int width);
     wxPen(const wxPen& pen);
-    ~wxPen();
+    ~wxPen() {}
     wxPen& operator = (const wxPen& pen);
     bool operator == (const wxPen& pen) const;
     bool operator != (const wxPen& pen) const;
     wxPen& operator = (const wxPen& pen);
     bool operator == (const wxPen& pen) const;
     bool operator != (const wxPen& pen) const;