diff options
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/gdi/graph.cxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/vcl/source/gdi/graph.cxx b/vcl/source/gdi/graph.cxx index 77c8fad22fa1..db4f1a7d0363 100644 --- a/vcl/source/gdi/graph.cxx +++ b/vcl/source/gdi/graph.cxx @@ -33,7 +33,10 @@ using namespace ::com::sun::star; -static void ImplDrawDefault( OutputDevice* pOutDev, const OUString* pText, +namespace +{ + +void ImplDrawDefault( OutputDevice* pOutDev, const OUString* pText, vcl::Font* pFont, const Bitmap* pBitmap, const BitmapEx* pBitmapEx, const Point& rDestPt, const Size& rDestSize ) { @@ -178,6 +181,8 @@ static void ImplDrawDefault( OutputDevice* pOutDev, const OUString* pText, pOutDev->Pop(); } +} // end anonymous namespace + Graphic::Graphic() : mxImpGraphic(new ImpGraphic) { |