summaryrefslogtreecommitdiffstats
path: root/unoxml
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-03-12 11:43:16 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-03-12 14:12:37 +0100
commit7d669e4cdc6ddcb680ffb4f05b18a8925a76a6b0 (patch)
tree60c7573fef5c6868ef98cdea125d6e0ddc76dd57 /unoxml
parentMove DBG_TRACE to OSL_TRACE for a macro (diff)
downloadcore-7d669e4cdc6ddcb680ffb4f05b18a8925a76a6b0.tar.gz
core-7d669e4cdc6ddcb680ffb4f05b18a8925a76a6b0.zip
Move OSL_ENSURE(false,...) to OSL_FAIL(...)
Diffstat (limited to 'unoxml')
-rw-r--r--unoxml/source/rdf/librdf_repository.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/unoxml/source/rdf/librdf_repository.cxx b/unoxml/source/rdf/librdf_repository.cxx
index fa5b065d068b..5fdf2788f8ad 100644
--- a/unoxml/source/rdf/librdf_repository.cxx
+++ b/unoxml/source/rdf/librdf_repository.cxx
@@ -1554,7 +1554,7 @@ throw (uno::RuntimeException, lang::IllegalArgumentException,
while (xIter->hasMoreElements()) {
rdf::Statement stmt;
if (!(xIter->nextElement() >>= stmt)) {
- OSL_ENSURE(false, "getStatementRDFa: result of wrong type?");
+ OSL_FAIL("getStatementRDFa: result of wrong type?");
} else {
ret.push_back(stmt);
}
@@ -2033,7 +2033,7 @@ librdf_node* librdf_TypeConverter::mkNode( librdf_world* i_pWorld,
(lang.getStr()), 0);
} else {
- OSL_ENSURE(false, "mkNode: invalid literal");
+ OSL_FAIL("mkNode: invalid literal");
return 0;
}
}
@@ -2114,7 +2114,7 @@ librdf_TypeConverter::convertToXURI(librdf_node* i_pNode) const
}
return convertToXURI(pURI);
} else {
- OSL_ENSURE(false, "convertToXURI: unknown librdf_node");
+ OSL_FAIL("convertToXURI: unknown librdf_node");
return 0;
}
}