diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-01-06 21:54:18 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-01-06 21:55:15 +0200 |
commit | ea9a321d1229914c6342e032da19f47cbeb9de1b (patch) | |
tree | 282179af94efb9e8aa631144273f6b2fff165604 /vcl/source/gdi/outdev.cxx | |
parent | 62532ad485698b70924c54a222890ebcb714dc39 (diff) |
Avoid duplicates not just for iOS but DISABLE_DYNLOADING in general
Change-Id: Ic449e706f4a8c3c2ed06d8602c6e83755441e0da
Diffstat (limited to 'vcl/source/gdi/outdev.cxx')
-rw-r--r-- | vcl/source/gdi/outdev.cxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/vcl/source/gdi/outdev.cxx b/vcl/source/gdi/outdev.cxx index d34cea9f9643..5d91ba390b00 100644 --- a/vcl/source/gdi/outdev.cxx +++ b/vcl/source/gdi/outdev.cxx @@ -65,14 +65,15 @@ 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... +#ifdef DISABLE_DYNLOADING +// Linking all needed LO code into one .so/executable, 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 +#ifdef DISABLE_DYNLOADING } #endif DBG_NAMEEX( Region ) |