diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-09-29 09:54:41 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-09-29 09:55:31 +0200 |
commit | 4b3f9fa6740be355e5cdadd8a41ecbd8d9ace298 (patch) | |
tree | e634170ac2da193d1f004ff34b2191c1596ca361 /xmloff | |
parent | 92ffd0acea035dc3916fc001b4dcd901a8a7a9d2 (diff) |
Nobody would go down the corridor anymore
Change-Id: Ic2cb2c4d9534d503828308183d55cea5b8d88112
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/text/XMLTextListBlockContext.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/text/XMLTextNumRuleInfo.cxx | 4 | ||||
-rw-r--r-- | xmloff/source/text/txtimp.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/text/txtparae.cxx | 6 |
4 files changed, 7 insertions, 7 deletions
diff --git a/xmloff/source/text/XMLTextListBlockContext.cxx b/xmloff/source/text/XMLTextListBlockContext.cxx index f8f9d37689fd..f6847e46babd 100644 --- a/xmloff/source/text/XMLTextListBlockContext.cxx +++ b/xmloff/source/text/XMLTextListBlockContext.cxx @@ -151,7 +151,7 @@ XMLTextListBlockContext::XMLTextListBlockContext( xNumRuleProps->getPropertyValue(s_PropNameDefaultListId) >>= sListStyleDefaultListId; DBG_ASSERT( !sListStyleDefaultListId.isEmpty(), - "no default list id found at numbering rules instance. Serious defect -> please inform OD." ); + "no default list id found at numbering rules instance. Serious defect." ); } } } diff --git a/xmloff/source/text/XMLTextNumRuleInfo.cxx b/xmloff/source/text/XMLTextNumRuleInfo.cxx index cb597daf167f..571c59d181ed 100644 --- a/xmloff/source/text/XMLTextNumRuleInfo.cxx +++ b/xmloff/source/text/XMLTextNumRuleInfo.cxx @@ -136,14 +136,14 @@ void XMLTextNumRuleInfo::Set( { Reference < XNamed > xNamed( mxNumRules, UNO_QUERY ); DBG_ASSERT( xNamed.is(), - "<XMLTextNumRuleInfo::Set(..)> - numbering rules instance have to be named. Serious defect -> please inform OD." ); + "<XMLTextNumRuleInfo::Set(..)> - numbering rules instance have to be named. Serious defect." ); if( xNamed.is() ) { msNumRulesName = xNamed->getName(); } } DBG_ASSERT( !msNumRulesName.isEmpty(), - "<XMLTextNumRuleInfo::Set(..)> - no name found for numbering rules instance. Serious defect -> please inform OD." ); + "<XMLTextNumRuleInfo::Set(..)> - no name found for numbering rules instance. Serious defect." ); if( xPropSetInfo->hasPropertyByName( msPropNameListId ) ) { diff --git a/xmloff/source/text/txtimp.cxx b/xmloff/source/text/txtimp.cxx index b58b722d95f8..061c2be52221 100644 --- a/xmloff/source/text/txtimp.cxx +++ b/xmloff/source/text/txtimp.cxx @@ -910,7 +910,7 @@ XMLTextImportHelper::XMLTextImportHelper( xNumRuleProps->getPropertyValue(s_PropNameDefaultListId) >>= sListId; assert( !sListId.isEmpty() && - "no default list id found at chapter numbering rules instance. Serious defect -> please inform OD." ); + "no default list id found at chapter numbering rules instance. Serious defect." ); if ( !sListId.isEmpty() ) { Reference< XNamed > const xChapterNumNamed( diff --git a/xmloff/source/text/txtparae.cxx b/xmloff/source/text/txtparae.cxx index f7f0a8fe6866..5ef925efbda9 100644 --- a/xmloff/source/text/txtparae.cxx +++ b/xmloff/source/text/txtparae.cxx @@ -812,7 +812,7 @@ void XMLTextParagraphExport::exportListChange( { // close corresponding sub lists DBG_ASSERT( rNextInfo.GetLevel() > 0, - "<rPrevInfo.GetLevel() > 0> not hold. Serious defect -> please inform OD." ); + "<rPrevInfo.GetLevel() > 0> not hold. Serious defect." ); nListLevelsToBeClosed = rPrevInfo.GetLevel() - rNextInfo.GetLevel(); } @@ -857,7 +857,7 @@ void XMLTextParagraphExport::exportListChange( { // open corresponding sub lists DBG_ASSERT( rPrevInfo.GetLevel() > 0, - "<rPrevInfo.GetLevel() > 0> not hold. Serious defect -> please inform OD." ); + "<rPrevInfo.GetLevel() > 0> not hold. Serious defect." ); nListLevelsToBeOpened = rNextInfo.GetLevel() - rPrevInfo.GetLevel(); } @@ -1341,7 +1341,7 @@ XMLTextParagraphExport::~XMLTextParagraphExport() #endif PopTextListsHelper(); DBG_ASSERT( maTextListsHelperStack.empty(), - "misusage of text lists helper stack - it is not empty. Serious defect - please inform OD" ); + "misusage of text lists helper stack - it is not empty. Serious defect" ); } SvXMLExportPropertyMapper *XMLTextParagraphExport::CreateShapeExtPropMapper( |