summaryrefslogtreecommitdiff
path: root/configmgr/source/xmldata.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr/source/xmldata.cxx')
-rw-r--r--configmgr/source/xmldata.cxx9
1 files changed, 3 insertions, 6 deletions
diff --git a/configmgr/source/xmldata.cxx b/configmgr/source/xmldata.cxx
index 029cc2312063..2697b4b94394 100644
--- a/configmgr/source/xmldata.cxx
+++ b/configmgr/source/xmldata.cxx
@@ -143,8 +143,7 @@ Type parseType(
}
}
throw css::uno::RuntimeException(
- "invalid type " + text.convertFromUtf8(),
- css::uno::Reference< css::uno::XInterface >());
+ "invalid type " + text.convertFromUtf8());
}
bool parseBoolean(xmlreader::Span const & text) {
@@ -156,8 +155,7 @@ bool parseBoolean(xmlreader::Span const & text) {
return false;
}
throw css::uno::RuntimeException(
- "invalid boolean " + text.convertFromUtf8(),
- css::uno::Reference< css::uno::XInterface >());
+ "invalid boolean " + text.convertFromUtf8());
}
OUString parseTemplateReference(
@@ -169,8 +167,7 @@ OUString parseTemplateReference(
return *defaultTemplateName;
}
throw css::uno::RuntimeException(
- "missing node-type attribute",
- css::uno::Reference< css::uno::XInterface >());
+ "missing node-type attribute");
}
return Data::fullTemplateName(component, nodeType);
}