diff options
author | Oliver Bolte <obo@openoffice.org> | 2006-10-12 12:24:34 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2006-10-12 12:24:34 +0000 |
commit | 42882871d757d790f72da52ae347b20a5c18b9f6 (patch) | |
tree | 8336ca63c2e5e4f6428afd86c0450d8789035d8a /svx | |
parent | dc74c4246de43340f217658ae4a9623ad395b664 (diff) |
INTEGRATION: CWS sb59 (1.27.14); FILE MERGED
2006/08/03 13:52:01 cl 1.27.14.1: removed compiler warnings
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/unodraw/UnoGraphicExporter.cxx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/svx/source/unodraw/UnoGraphicExporter.cxx b/svx/source/unodraw/UnoGraphicExporter.cxx index f2d7b31e6d46..606e7ba4c48c 100644 --- a/svx/source/unodraw/UnoGraphicExporter.cxx +++ b/svx/source/unodraw/UnoGraphicExporter.cxx @@ -4,9 +4,9 @@ * * $RCSfile: UnoGraphicExporter.cxx,v $ * - * $Revision: 1.29 $ + * $Revision: 1.30 $ * - * last change: $Author: kz $ $Date: 2006-10-06 10:39:59 $ + * last change: $Author: obo $ $Date: 2006-10-12 13:24:34 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -510,7 +510,10 @@ VirtualDevice* GraphicExporter::CreatePageVDev( SdrPage* pPage, ULONG nWidthPixe } pVDev->SetMapMode( aMM ); - BOOL bAbort = !pVDev->SetOutputSize(aPageSize); +#ifdef DBG_UTIL + BOOL bAbort = ! +#endif + pVDev->SetOutputSize(aPageSize); DBG_ASSERT(!bAbort, "virt. Device nicht korrekt erzeugt"); SdrView* pView = new SdrView(mpDoc, pVDev); |