]> git.saurik.com Git - wxWidgets.git/commitdiff
Remove virtual from the newly added Create methods.
authorDavid Elliott <dfe@tgwbd.org>
Thu, 9 Aug 2007 19:07:07 +0000 (19:07 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Thu, 9 Aug 2007 19:07:07 +0000 (19:07 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47991 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/cocoa/bitmap.h

index e8693703e139d4d7b657dca8d7dfc57ab65d6340..9fc1b1e937bd0aae229e3fa0697727612dc81bb0 100644 (file)
@@ -102,8 +102,8 @@ public:
     bool CreateFromImage(const wxImage& image, int depth=-1);
 
     virtual bool Create(int width, int height, int depth = -1);
-    virtual bool Create(NSImage* cocoaNSImage);
-    virtual bool Create(NSBitmapImageRep* cocoaNSBitmapImageRep);
+    bool Create(NSImage* cocoaNSImage);
+    bool Create(NSBitmapImageRep* cocoaNSBitmapImageRep);
     virtual bool Create(const void* data, wxBitmapType type, int width, int height, int depth = 1);
     virtual bool LoadFile(const wxString& name, wxBitmapType type = wxBITMAP_TYPE_BMP_RESOURCE);
     virtual bool SaveFile(const wxString& name, wxBitmapType type, const wxPalette *cmap = NULL) const;