]> git.saurik.com Git - wxWidgets.git/commitdiff
adding default for Create with dc
authorStefan Csomor <csomor@advancedconcepts.ch>
Tue, 25 Jun 2013 17:15:10 +0000 (17:15 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Tue, 25 Jun 2013 17:15:10 +0000 (17:15 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74297 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/dfb/bitmap.h
include/wx/gtk1/bitmap.h
include/wx/os2/bitmap.h
include/wx/x11/bitmap.h

index e7335658e5190bcf25a094d4607399681e07210b..974c2a78448762555bce25efe174b68f9ce48fbb 100644 (file)
@@ -39,6 +39,8 @@ public:
     bool Create(int width, int height, int depth = wxBITMAP_SCREEN_DEPTH);
     bool Create(const wxSize& sz, int depth = wxBITMAP_SCREEN_DEPTH)
         { return Create(sz.GetWidth(), sz.GetHeight(), depth); }
+    bool Create(int width, int height, const wxDC& WXUNUSED(dc))
+        { return Create(width,height); }
 
     virtual int GetHeight() const;
     virtual int GetWidth() const;
index 444b5ab700ff85d9e82dc8cde2a2a3c49a69fa50..fc287bd8b4a789ac5d6e927b3f44a51aa124910f 100644 (file)
@@ -83,6 +83,8 @@ public:
     bool Create(int width, int height, int depth = wxBITMAP_SCREEN_DEPTH);
     bool Create(const wxSize& sz, int depth = wxBITMAP_SCREEN_DEPTH)
         { return Create(sz.GetWidth(), sz.GetHeight(), depth); }
+    bool Create(int width, int height, const wxDC& WXUNUSED(dc))
+        { return Create(width,height); }
 
     virtual int GetHeight() const;
     virtual int GetWidth() const;
index 6069f285807fdd0a220e3b07c0c1d17304223d9f..7051a8162dce3251d9c4df00deca3a7aa1629ae6 100644 (file)
@@ -166,6 +166,8 @@ public:
                        );
     virtual bool Create(const wxSize& sz, int depth = wxBITMAP_SCREEN_DEPTH)
         { return Create(sz.GetWidth(), sz.GetHeight(), depth); }
+    virtual bool Create(int width, int height, const wxDC& WXUNUSED(dc))
+        { return Create(width,height); }
 
     virtual bool Create( const void* pData
                         ,wxBitmapType lType
index 4553382baba92f82576170abc26194416cda51dc..011a29a28539444a0792d93ad452c4f11e8d6c34 100644 (file)
@@ -88,6 +88,8 @@ public:
     bool Create(int width, int height, int depth = wxBITMAP_SCREEN_DEPTH);
     bool Create(const wxSize& sz, int depth = wxBITMAP_SCREEN_DEPTH)
         { return Create(sz.GetWidth(), sz.GetHeight(), depth); }
+    bool Create(int width, int height, const wxDC& WXUNUSED(dc))
+        { return Create(width,height); }
 
     bool Create(const void* data, wxBitmapType type,
                 int width, int height, int depth = -1);