diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2008-04-22 14:30:15 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2008-04-22 14:30:15 +0000 |
commit | 96780c3efa64b9f6d0475f2d7972f1e17d1ba7f0 (patch) | |
tree | e1f6adb42538d94424379ea1791b988740f1bf41 /xmloff | |
parent | 06317984abe3e687f934dadf7aa68321819e424f (diff) |
INTEGRATION: CWS hr50 (1.133.46); FILE MERGED
2008/04/09 11:05:53 hr 1.133.46.1: #i86574#: fix warning (gcc-4.2.3)
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/core/xmlexp.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/xmloff/source/core/xmlexp.cxx b/xmloff/source/core/xmlexp.cxx index 7c28433330f7..bbe2e5b3b02a 100644 --- a/xmloff/source/core/xmlexp.cxx +++ b/xmloff/source/core/xmlexp.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: xmlexp.cxx,v $ - * $Revision: 1.138 $ + * $Revision: 1.139 $ * * This file is part of OpenOffice.org. * @@ -1906,8 +1906,9 @@ ProgressBarHelper* SvXMLExport::GetProgressBarHelper() uno::Any aAny = mxExportInfo->getPropertyValue(sRepeat); if (aAny.getValueType() == getBooleanCppuType()) mpProgressBarHelper->SetRepeat(::cppu::any2bool(aAny)); - else + else { DBG_ERRORFILE("why is it no boolean?"); + } } } } |