diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-08-26 21:36:25 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-08-27 11:37:41 +0300 |
commit | 123393ca342e1865cdc9acaa654e27eabb14f232 (patch) | |
tree | 256439a61ddbf04c5bd219630ea51b5c29ca597d | |
parent | 611a04bc3e023d88c26e1915d45c2b877f92e08e (diff) |
Fix dbgutil iOS build
Change-Id: Ie05a958411683cc4ea5adcac0f1ab6ea0c4736de
-rw-r--r-- | vcl/source/gdi/outdev.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/vcl/source/gdi/outdev.cxx b/vcl/source/gdi/outdev.cxx index 0d7382706c70..c8a03459c837 100644 --- a/vcl/source/gdi/outdev.cxx +++ b/vcl/source/gdi/outdev.cxx @@ -75,8 +75,16 @@ using namespace ::com::sun::star; DBG_NAME( OutputDevice ) +#ifdef IOS // Static linking, these already exist in the tools + // library, so put them in the anonymous namespace here to + // avoid clash... +namespace { +#endif DBG_NAME( Polygon ) DBG_NAME( PolyPolygon ) +#ifdef IOS +} +#endif DBG_NAMEEX( Region ) // ----------------------------------------------------------------------- |