From 5df481d7cc6ec87a292c311ea16f366c093fdcb7 Mon Sep 17 00:00:00 2001 From: Kevin Ollivier Date: Sun, 16 Nov 2008 23:28:23 +0000 Subject: [PATCH] Fix typo made during patch cleanup. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@56802 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/graphics.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/wx/graphics.h b/include/wx/graphics.h index 54a0ad58c8..7ed23f0a5d 100755 --- a/include/wx/graphics.h +++ b/include/wx/graphics.h @@ -686,7 +686,10 @@ public : // sets the font virtual wxGraphicsFont CreateFont( const wxFont &font , const wxColour &col = *wxBLACK ) = 0; - wxGraphicsBitmap CreateBitmap( const wxBitmap &bmp ) = 0; +#if wxABI_VERSION >= 20809 + wxGraphicsBitmap CreateBitmap( const wxBitmap &bmp ); +#endif + private : DECLARE_NO_COPY_CLASS(wxGraphicsRenderer) DECLARE_ABSTRACT_CLASS(wxGraphicsRenderer)