summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.com>2016-10-11 12:59:00 +0200
committerTomaž Vajngerl <tomaz.vajngerl@collabora.com>2016-10-11 12:59:00 +0200
commit9c9f184138dd9e3dbd50d5d50fc86ca172ae4dfe (patch)
treeb9b21967315ccef2672b5ba17fbd8fe41e347357 /vcl
parent7dbe627ca8dbb8745e25c4217913c88d2caabe89 (diff)
vcl: put in anonymous namespace
Change-Id: Ib24a8dd044003f8d667d97e989fbbf640d4eacdf
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/graph.cxx7
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)
{