summaryrefslogtreecommitdiff
path: root/xmloff/source/core
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2008-04-22 14:30:30 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2008-04-22 14:30:30 +0000
commit51cfdb559ecc680d7470ac11f63b38b60ee11eee (patch)
tree100effe9e97cfcd4873fe0e38751bd9edb8dd149 /xmloff/source/core
parent96780c3efa64b9f6d0475f2d7972f1e17d1ba7f0 (diff)
INTEGRATION: CWS hr50 (1.103.12); FILE MERGED
2008/04/09 11:05:53 hr 1.103.12.1: #i86574#: fix warning (gcc-4.2.3)
Diffstat (limited to 'xmloff/source/core')
-rw-r--r--xmloff/source/core/xmlimp.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/xmloff/source/core/xmlimp.cxx b/xmloff/source/core/xmlimp.cxx
index 281dd7e53181..5770e317cff9 100644
--- a/xmloff/source/core/xmlimp.cxx
+++ b/xmloff/source/core/xmlimp.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: xmlimp.cxx,v $
- * $Revision: 1.108 $
+ * $Revision: 1.109 $
*
* This file is part of OpenOffice.org.
*
@@ -1391,8 +1391,9 @@ ProgressBarHelper* SvXMLImport::GetProgressBarHelper()
uno::Any aAny = mxImportInfo->getPropertyValue(sRepeat);
if (aAny.getValueType() == getBooleanCppuType())
mpProgressBarHelper->SetRepeat(::cppu::any2bool(aAny));
- else
+ else {
DBG_ERRORFILE("why is it no boolean?");
+ }
}
}
}
@@ -1417,8 +1418,9 @@ void SvXMLImport::AddNumberStyle(sal_Int32 nKey, const OUString& rName)
DBG_ERROR("Numberformat could not be inserted");
}
}
- else
+ else {
DBG_ERROR("not possible to create NameContainer");
+ }
}
XMLEventImportHelper& SvXMLImport::GetEventImport()