From ab6a33b4ad4221fd191c77f1e6dd6757587c88db Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 8 Feb 2012 23:45:32 +0000 Subject: [PATCH] Fix wrong signature of wxBitmap(bits) ctor in the documentation. This ctor takes just a "char* bits" (spelt as "char bits[]" for some reason), not "char* bits[]". Closes #13947. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70545 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/bitmap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/wx/bitmap.h b/interface/wx/bitmap.h index 4874563bd4..cf62947f78 100644 --- a/interface/wx/bitmap.h +++ b/interface/wx/bitmap.h @@ -276,7 +276,7 @@ public: In wxPerl use Wx::Bitmap->newFromBits(bits, width, height, depth). @endWxPerlOnly */ - wxBitmap(const char* bits[], int width, int height, int depth = 1); + wxBitmap(const char bits[], int width, int height, int depth = 1); /** Creates a new bitmap. A depth of ::wxBITMAP_SCREEN_DEPTH indicates the -- 2.45.2