summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorGert Faller <gertfaller@aliceadsl.fr>2010-11-21 01:23:07 +0100
committerGert Faller <gertfaller@aliceadsl.fr>2010-11-21 01:23:07 +0100
commitaeb1cb8fee083ad731066a511f270450e5c53b58 (patch)
tree67563504cc039319849dcd77d6d34d4eef804e31 /sfx2
parent207c1b8bf6bb595dea09856c73f71788f0fa7249 (diff)
TL_CONSTASCII_USTRINGPARAM in libs core 32
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/doc/SfxDocumentMetaData.cxx124
-rw-r--r--sfx2/source/doc/sfxbasemodel.cxx74
2 files changed, 99 insertions, 99 deletions
diff --git a/sfx2/source/doc/SfxDocumentMetaData.cxx b/sfx2/source/doc/SfxDocumentMetaData.cxx
index a19fd81297..7589ad68ae 100644
--- a/sfx2/source/doc/SfxDocumentMetaData.cxx
+++ b/sfx2/source/doc/SfxDocumentMetaData.cxx
@@ -670,8 +670,8 @@ SfxDocumentMetaData::getURLProperties(
css::uno::Reference<css::lang::XMultiComponentFactory> xMsf (
m_xContext->getServiceManager());
css::uno::Reference< css::beans::XPropertyContainer> xPropArg(
- xMsf->createInstanceWithContext(::rtl::OUString::createFromAscii(
- "com.sun.star.beans.PropertyBag"), m_xContext),
+ xMsf->createInstanceWithContext(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "com.sun.star.beans.PropertyBag")), m_xContext),
css::uno::UNO_QUERY_THROW);
try {
::rtl::OUString dburl =
@@ -708,8 +708,8 @@ getNodeText(css::uno::Reference<css::xml::dom::XNode> i_xNode)
throw (css::uno::RuntimeException)
{
if (!i_xNode.is()) throw css::uno::RuntimeException(
- ::rtl::OUString::createFromAscii(
- "SfxDocumentMetaData::getNodeText: argument is null"), i_xNode);
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "SfxDocumentMetaData::getNodeText: argument is null")), i_xNode);
for (css::uno::Reference<css::xml::dom::XNode> c = i_xNode->getFirstChild();
c.is();
c = c->getNextSibling()) {
@@ -788,8 +788,8 @@ SfxDocumentMetaData::setMetaText(const char* i_name,
} catch (css::xml::dom::DOMException & e) {
css::uno::Any a(e);
throw css::lang::WrappedTargetRuntimeException(
- ::rtl::OUString::createFromAscii(
- "SfxDocumentMetaData::setMetaText: DOM exception"),
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "SfxDocumentMetaData::setMetaText: DOM exception")),
css::uno::Reference<css::uno::XInterface>(*this), a);
}
}
@@ -926,8 +926,8 @@ SfxDocumentMetaData::setMetaList(const char* i_name,
} catch (css::xml::dom::DOMException & e) {
css::uno::Any a(e);
throw css::lang::WrappedTargetRuntimeException(
- ::rtl::OUString::createFromAscii(
- "SfxDocumentMetaData::setMetaList: DOM exception"),
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "SfxDocumentMetaData::setMetaList: DOM exception")),
css::uno::Reference<css::uno::XInterface>(*this), a);
}
}
@@ -1067,8 +1067,8 @@ SfxDocumentMetaData::updateElement(const char *i_name,
} catch (css::xml::dom::DOMException & e) {
css::uno::Any a(e);
throw css::lang::WrappedTargetRuntimeException(
- ::rtl::OUString::createFromAscii(
- "SfxDocumentMetaData::updateElement: DOM exception"),
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "SfxDocumentMetaData::updateElement: DOM exception")),
css::uno::Reference<css::uno::XInterface>(*this), a);
}
}
@@ -1145,18 +1145,18 @@ SfxDocumentMetaData::createDOM() const // throw (css::uno::RuntimeException)
css::uno::Reference<css::lang::XMultiComponentFactory> xMsf (
m_xContext->getServiceManager());
css::uno::Reference<css::xml::dom::XDocumentBuilder> xBuilder(
- xMsf->createInstanceWithContext(::rtl::OUString::createFromAscii(
- "com.sun.star.xml.dom.DocumentBuilder"), m_xContext),
+ xMsf->createInstanceWithContext(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "com.sun.star.xml.dom.DocumentBuilder")), m_xContext),
css::uno::UNO_QUERY_THROW );
if (!xBuilder.is()) throw css::uno::RuntimeException(
- ::rtl::OUString::createFromAscii("SfxDocumentMetaData::createDOM: "
- "cannot create DocumentBuilder service"),
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("SfxDocumentMetaData::createDOM: "
+ "cannot create DocumentBuilder service")),
*const_cast<SfxDocumentMetaData*>(this));
css::uno::Reference<css::xml::dom::XDocument> xDoc =
xBuilder->newDocument();
if (!xDoc.is()) throw css::uno::RuntimeException(
- ::rtl::OUString::createFromAscii("SfxDocumentMetaData::createDOM: "
- "cannot create new document"),
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("SfxDocumentMetaData::createDOM: "
+ "cannot create new document")),
*const_cast<SfxDocumentMetaData*>(this));
return xDoc;
}
@@ -1165,8 +1165,8 @@ void SAL_CALL
SfxDocumentMetaData::checkInit() const // throw (css::uno::RuntimeException)
{
if (!m_isInitialized) {
- throw css::uno::RuntimeException(::rtl::OUString::createFromAscii(
- "SfxDocumentMetaData::checkInit: not initialized"),
+ throw css::uno::RuntimeException(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "SfxDocumentMetaData::checkInit: not initialized")),
*const_cast<SfxDocumentMetaData*>(this));
}
DBG_ASSERT((m_xDoc.is() && m_xParent.is() ),
@@ -1180,18 +1180,18 @@ void SAL_CALL SfxDocumentMetaData::init(
// css::uno::Exception)
{
if (!i_xDoc.is()) throw css::uno::RuntimeException(
- ::rtl::OUString::createFromAscii(
- "SfxDocumentMetaData::init: no DOM tree given"), *this);
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "SfxDocumentMetaData::init: no DOM tree given")), *this);
css::uno::Reference<css::lang::XMultiComponentFactory> xMsf (
m_xContext->getServiceManager());
css::uno::Reference<css::xml::xpath::XXPathAPI> xPath(
- xMsf->createInstanceWithContext(::rtl::OUString::createFromAscii(
- "com.sun.star.xml.xpath.XPathAPI"), m_xContext),
+ xMsf->createInstanceWithContext(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "com.sun.star.xml.xpath.XPathAPI")), m_xContext),
css::uno::UNO_QUERY_THROW );
if (!xPath.is()) throw css::uno::RuntimeException(
- ::rtl::OUString::createFromAscii("SfxDocumentMetaData::init:"
- " cannot create XPathAPI service"), *this);
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("SfxDocumentMetaData::init:"
+ " cannot create XPathAPI service")), *this);
m_isInitialized = false;
m_xDoc = i_xDoc;
@@ -1209,8 +1209,8 @@ void SAL_CALL SfxDocumentMetaData::init(
// NB: we do not handle the single-XML-file ODF variant, which would
// have the root element office:document.
// The root of such documents must be converted in the importer!
- ::rtl::OUString prefix = ::rtl::OUString::createFromAscii(
- "/child::office:document-meta/child::office:meta");
+ ::rtl::OUString prefix(RTL_CONSTASCII_USTRINGPARAM(
+ "/child::office:document-meta/child::office:meta"));
css::uno::Reference<css::xml::dom::XNode> xDocNode(
m_xDoc, css::uno::UNO_QUERY_THROW);
m_xParent.clear();
@@ -1248,8 +1248,8 @@ void SAL_CALL SfxDocumentMetaData::init(
} catch (css::xml::dom::DOMException & e) {
css::uno::Any a(e);
throw css::lang::WrappedTargetRuntimeException(
- ::rtl::OUString::createFromAscii(
- "SfxDocumentMetaData::init: DOM exception"),
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "SfxDocumentMetaData::init: DOM exception")),
css::uno::Reference<css::uno::XInterface>(*this), a);
}
}
@@ -1732,8 +1732,8 @@ SfxDocumentMetaData::setAutoloadSecs(::sal_Int32 the_value)
throw (css::uno::RuntimeException, css::lang::IllegalArgumentException)
{
if (the_value < 0) throw css::lang::IllegalArgumentException(
- ::rtl::OUString::createFromAscii(
- "SfxDocumentMetaData::setAutoloadSecs: argument is negative"),
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "SfxDocumentMetaData::setAutoloadSecs: argument is negative")),
*this, 0);
::osl::ClearableMutexGuard g(m_aMutex);
checkInit();
@@ -1846,8 +1846,8 @@ SfxDocumentMetaData::setEditingCycles(::sal_Int16 the_value)
throw (css::uno::RuntimeException, css::lang::IllegalArgumentException)
{
if (the_value < 0) throw css::lang::IllegalArgumentException(
- ::rtl::OUString::createFromAscii(
- "SfxDocumentMetaData::setEditingCycles: argument is negative"),
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "SfxDocumentMetaData::setEditingCycles: argument is negative")),
*this, 0);
::rtl::OUStringBuffer buf;
::sax::Converter::convertNumber(buf, the_value);
@@ -1866,8 +1866,8 @@ SfxDocumentMetaData::setEditingDuration(::sal_Int32 the_value)
throw (css::uno::RuntimeException, css::lang::IllegalArgumentException)
{
if (the_value < 0) throw css::lang::IllegalArgumentException(
- ::rtl::OUString::createFromAscii(
- "SfxDocumentMetaData::setEditingDuration: argument is negative"),
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "SfxDocumentMetaData::setEditingDuration: argument is negative")),
*this, 0);
setMetaTextAndNotify("meta:editing-duration", durationToText(the_value));
}
@@ -1920,8 +1920,8 @@ SfxDocumentMetaData::loadFromStorage(
css::lang::WrappedTargetException, css::io::IOException)
{
if (!xStorage.is()) throw css::lang::IllegalArgumentException(
- ::rtl::OUString::createFromAscii("SfxDocumentMetaData::loadFromStorage:"
- " argument is null"), *this, 0);
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("SfxDocumentMetaData::loadFromStorage:"
+ " argument is null")), *this, 0);
::osl::MutexGuard g(m_aMutex);
// open meta data file
@@ -1938,12 +1938,12 @@ SfxDocumentMetaData::loadFromStorage(
css::uno::Reference<css::lang::XMultiComponentFactory> xMsf (
m_xContext->getServiceManager());
css::uno::Reference<css::xml::sax::XParser> xParser (
- xMsf->createInstanceWithContext(::rtl::OUString::createFromAscii(
- "com.sun.star.xml.sax.Parser"), m_xContext),
+ xMsf->createInstanceWithContext(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "com.sun.star.xml.sax.Parser")), m_xContext),
css::uno::UNO_QUERY_THROW);
if (!xParser.is()) throw css::uno::RuntimeException(
- ::rtl::OUString::createFromAscii("SfxDocumentMetaData::loadFromStorage:"
- " cannot create Parser service"), *this);
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("SfxDocumentMetaData::loadFromStorage:"
+ " cannot create Parser service")), *this);
css::xml::sax::InputSource input;
input.aInputStream = xInStream;
@@ -1973,8 +1973,8 @@ SfxDocumentMetaData::loadFromStorage(
::rtl::OUString::createFromAscii(pServiceName), args, m_xContext),
css::uno::UNO_QUERY_THROW);
if (!xDocHandler.is()) throw css::uno::RuntimeException(
- ::rtl::OUString::createFromAscii("SfxDocumentMetaData::loadFromStorage:"
- " cannot create XMLOasisMetaImporter service"), *this);
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("SfxDocumentMetaData::loadFromStorage:"
+ " cannot create XMLOasisMetaImporter service")), *this);
css::uno::Reference<css::document::XImporter> xImp (xDocHandler,
css::uno::UNO_QUERY_THROW);
xImp->setTargetDocument(css::uno::Reference<css::lang::XComponent>(this));
@@ -1982,9 +1982,9 @@ SfxDocumentMetaData::loadFromStorage(
try {
xParser->parseStream(input);
} catch (css::xml::sax::SAXException &) {
- throw css::io::WrongFormatException(::rtl::OUString::createFromAscii(
+ throw css::io::WrongFormatException(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
"SfxDocumentMetaData::loadFromStorage:"
- " XML parsing exception"), *this);
+ " XML parsing exception")), *this);
}
// NB: the implementation of XMLOasisMetaImporter calls initialize
// init(xDocBuilder->getDocument());
@@ -1999,8 +1999,8 @@ SfxDocumentMetaData::storeToStorage(
css::lang::WrappedTargetException, css::io::IOException)
{
if (!xStorage.is()) throw css::lang::IllegalArgumentException(
- ::rtl::OUString::createFromAscii("SfxDocumentMetaData::storeToStorage:"
- " argument is null"), *this, 0);
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("SfxDocumentMetaData::storeToStorage:"
+ " argument is null")), *this, 0);
::osl::MutexGuard g(m_aMutex);
checkInit();
@@ -2030,8 +2030,8 @@ SfxDocumentMetaData::storeToStorage(
css::uno::Reference<css::lang::XMultiComponentFactory> xMsf (
m_xContext->getServiceManager());
css::uno::Reference<css::io::XActiveDataSource> xSaxWriter(
- xMsf->createInstanceWithContext(::rtl::OUString::createFromAscii(
- "com.sun.star.xml.sax.Writer"), m_xContext),
+ xMsf->createInstanceWithContext(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "com.sun.star.xml.sax.Writer")), m_xContext),
css::uno::UNO_QUERY_THROW);
xSaxWriter->setOutputStream(xOutStream);
css::uno::Reference<css::xml::sax::XDocumentHandler> xDocHandler (
@@ -2065,8 +2065,8 @@ SfxDocumentMetaData::storeToStorage(
xTransaction->commit();
}
} else {
- throw css::io::IOException(::rtl::OUString::createFromAscii(
- "SfxDocumentMetaData::storeToStorage: cannot filter"), *this);
+ throw css::io::IOException(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "SfxDocumentMetaData::storeToStorage: cannot filter")), *this);
}
}
@@ -2102,14 +2102,14 @@ SfxDocumentMetaData::loadFromMedium(const ::rtl::OUString & URL,
throw;
} catch (css::uno::Exception & e) {
throw css::lang::WrappedTargetException(
- ::rtl::OUString::createFromAscii(
- "SfxDocumentMetaData::loadFromMedium: exception"),
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "SfxDocumentMetaData::loadFromMedium: exception")),
css::uno::Reference<css::uno::XInterface>(*this),
css::uno::makeAny(e));
}
if (!xStorage.is()) {
- throw css::uno::RuntimeException(::rtl::OUString::createFromAscii(
- "SfxDocumentMetaData::loadFromMedium: cannot get Storage"),
+ throw css::uno::RuntimeException(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "SfxDocumentMetaData::loadFromMedium: cannot get Storage")),
*this);
}
loadFromStorage(xStorage, md.getAsConstPropertyValueList());
@@ -2131,8 +2131,8 @@ SfxDocumentMetaData::storeToMedium(const ::rtl::OUString & URL,
if (!xStorage.is()) {
- throw css::uno::RuntimeException(::rtl::OUString::createFromAscii(
- "SfxDocumentMetaData::storeToMedium: cannot get Storage"),
+ throw css::uno::RuntimeException(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "SfxDocumentMetaData::storeToMedium: cannot get Storage")),
*this);
}
// set MIME type of the storage
@@ -2181,14 +2181,14 @@ SfxDocumentMetaData::initialize(
if (any >>= xDoc) {
if (!xDoc.is()) {
throw css::lang::IllegalArgumentException(
- ::rtl::OUString::createFromAscii("SfxDocumentMetaData::"
- "initialize: argument is null"),
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("SfxDocumentMetaData::"
+ "initialize: argument is null")),
*this, static_cast<sal_Int16>(i));
}
} else {
throw css::lang::IllegalArgumentException(
- ::rtl::OUString::createFromAscii("SfxDocumentMetaData::"
- "initialize: argument must be XDocument"),
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("SfxDocumentMetaData::"
+ "initialize: argument must be XDocument")),
*this, static_cast<sal_Int16>(i));
}
}
@@ -2227,8 +2227,8 @@ SfxDocumentMetaData::createClone()
} catch (css::uno::Exception & e) {
css::uno::Any a(e);
throw css::lang::WrappedTargetRuntimeException(
- ::rtl::OUString::createFromAscii(
- "SfxDocumentMetaData::createClone: exception"),
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "SfxDocumentMetaData::createClone: exception")),
css::uno::Reference<css::uno::XInterface>(*this), a);
}
// return static_cast< ::cppu::OWeakObject * > (pNew);
diff --git a/sfx2/source/doc/sfxbasemodel.cxx b/sfx2/source/doc/sfxbasemodel.cxx
index 16552d457f..df77bb6d0e 100644
--- a/sfx2/source/doc/sfxbasemodel.cxx
+++ b/sfx2/source/doc/sfxbasemodel.cxx
@@ -281,8 +281,8 @@ struct IMPL_SfxBaseModel_DataContainer : public ::sfx2::IModifiableDocument
const uno::Reference<frame::
XTransientDocumentsDocumentContentFactory> xTDDCF(
xMsf->createInstanceWithContext(
- ::rtl::OUString::createFromAscii( "com.sun.star.frame."
- "TransientDocumentsDocumentContentFactory"),
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.frame."
+ "TransientDocumentsDocumentContentFactory")),
xContext),
uno::UNO_QUERY_THROW);
const uno::Reference<ucb::XContent> xContent(
@@ -861,8 +861,8 @@ uno::Reference< document::XDocumentInfo > SAL_CALL SfxBaseModel::getDocumentInfo
} catch (uno::RuntimeException &) {
throw;
} catch (uno::Exception & e) {
- throw lang::WrappedTargetRuntimeException(::rtl::OUString::createFromAscii(
- "SfxBaseModel::getDocumentInfo: cannot initialize"), *this,
+ throw lang::WrappedTargetRuntimeException(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "SfxBaseModel::getDocumentInfo: cannot initialize")), *this,
uno::makeAny(e));
}
try {
@@ -3414,7 +3414,7 @@ embed::VisualRepresentation SAL_CALL SfxBaseModel::getPreferredVisualRepresentat
SfxModelGuard aGuard( *this );
datatransfer::DataFlavor aDataFlavor(
- ::rtl::OUString::createFromAscii( "application/x-openoffice-gdimetafile;windows_formatname=\"GDIMetaFile\"" ),
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "application/x-openoffice-gdimetafile;windows_formatname=\"GDIMetaFile\"" )),
::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("GDIMetaFile")),
::getCppuType( (const uno::Sequence< sal_Int8 >*) NULL ) );
@@ -4029,8 +4029,8 @@ SfxBaseModel::getRDFRepository() throw (uno::RuntimeException)
const uno::Reference<rdf::XDocumentMetadataAccess> xDMA(m_pData->GetDMA());
if (!xDMA.is()) {
- throw uno::RuntimeException( ::rtl::OUString::createFromAscii(
- "model has no document metadata"), *this );
+ throw uno::RuntimeException( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "model has no document metadata")), *this );
}
return xDMA->getRDFRepository();
@@ -4044,8 +4044,8 @@ SfxBaseModel::getStringValue() throw (uno::RuntimeException)
const uno::Reference<rdf::XDocumentMetadataAccess> xDMA(m_pData->GetDMA());
if (!xDMA.is()) {
- throw uno::RuntimeException( ::rtl::OUString::createFromAscii(
- "model has no document metadata"), *this );
+ throw uno::RuntimeException( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "model has no document metadata")), *this );
}
return xDMA->getStringValue();
@@ -4059,8 +4059,8 @@ SfxBaseModel::getNamespace() throw (uno::RuntimeException)
const uno::Reference<rdf::XDocumentMetadataAccess> xDMA(m_pData->GetDMA());
if (!xDMA.is()) {
- throw uno::RuntimeException( ::rtl::OUString::createFromAscii(
- "model has no document metadata"), *this );
+ throw uno::RuntimeException( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "model has no document metadata")), *this );
}
return xDMA->getNamespace();
@@ -4073,8 +4073,8 @@ SfxBaseModel::getLocalName() throw (uno::RuntimeException)
const uno::Reference<rdf::XDocumentMetadataAccess> xDMA(m_pData->GetDMA());
if (!xDMA.is()) {
- throw uno::RuntimeException( ::rtl::OUString::createFromAscii(
- "model has no document metadata"), *this );
+ throw uno::RuntimeException( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "model has no document metadata")), *this );
}
return xDMA->getLocalName();
@@ -4090,8 +4090,8 @@ throw (uno::RuntimeException)
const uno::Reference<rdf::XDocumentMetadataAccess> xDMA(m_pData->GetDMA());
if (!xDMA.is()) {
- throw uno::RuntimeException( ::rtl::OUString::createFromAscii(
- "model has no document metadata"), *this );
+ throw uno::RuntimeException( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "model has no document metadata")), *this );
}
return xDMA->getElementByMetadataReference(i_rReference);
@@ -4105,8 +4105,8 @@ throw (uno::RuntimeException, lang::IllegalArgumentException)
const uno::Reference<rdf::XDocumentMetadataAccess> xDMA(m_pData->GetDMA());
if (!xDMA.is()) {
- throw uno::RuntimeException( ::rtl::OUString::createFromAscii(
- "model has no document metadata"), *this );
+ throw uno::RuntimeException( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "model has no document metadata")), *this );
}
return xDMA->getElementByURI(i_xURI);
@@ -4121,8 +4121,8 @@ throw (uno::RuntimeException, lang::IllegalArgumentException)
const uno::Reference<rdf::XDocumentMetadataAccess> xDMA(m_pData->GetDMA());
if (!xDMA.is()) {
- throw uno::RuntimeException( ::rtl::OUString::createFromAscii(
- "model has no document metadata"), *this );
+ throw uno::RuntimeException( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "model has no document metadata")), *this );
}
return xDMA->getMetadataGraphsWithType(i_xType);
@@ -4138,8 +4138,8 @@ throw (uno::RuntimeException, lang::IllegalArgumentException,
const uno::Reference<rdf::XDocumentMetadataAccess> xDMA(m_pData->GetDMA());
if (!xDMA.is()) {
- throw uno::RuntimeException( ::rtl::OUString::createFromAscii(
- "model has no document metadata"), *this );
+ throw uno::RuntimeException( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "model has no document metadata")), *this );
}
return xDMA->addMetadataFile(i_rFileName, i_rTypes);
@@ -4159,8 +4159,8 @@ throw (uno::RuntimeException, lang::IllegalArgumentException,
const uno::Reference<rdf::XDocumentMetadataAccess> xDMA(m_pData->GetDMA());
if (!xDMA.is()) {
- throw uno::RuntimeException( ::rtl::OUString::createFromAscii(
- "model has no document metadata"), *this );
+ throw uno::RuntimeException( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "model has no document metadata")), *this );
}
return xDMA->importMetadataFile(i_Format,
@@ -4177,8 +4177,8 @@ throw (uno::RuntimeException, lang::IllegalArgumentException,
const uno::Reference<rdf::XDocumentMetadataAccess> xDMA(m_pData->GetDMA());
if (!xDMA.is()) {
- throw uno::RuntimeException( ::rtl::OUString::createFromAscii(
- "model has no document metadata"), *this );
+ throw uno::RuntimeException( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "model has no document metadata")), *this );
}
return xDMA->removeMetadataFile(i_xGraphName);
@@ -4193,8 +4193,8 @@ throw (uno::RuntimeException, lang::IllegalArgumentException,
const uno::Reference<rdf::XDocumentMetadataAccess> xDMA(m_pData->GetDMA());
if (!xDMA.is()) {
- throw uno::RuntimeException( ::rtl::OUString::createFromAscii(
- "model has no document metadata"), *this );
+ throw uno::RuntimeException( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "model has no document metadata")), *this );
}
return xDMA->addContentOrStylesFile(i_rFileName);
@@ -4209,8 +4209,8 @@ throw (uno::RuntimeException, lang::IllegalArgumentException,
const uno::Reference<rdf::XDocumentMetadataAccess> xDMA(m_pData->GetDMA());
if (!xDMA.is()) {
- throw uno::RuntimeException( ::rtl::OUString::createFromAscii(
- "model has no document metadata"), *this );
+ throw uno::RuntimeException( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "model has no document metadata")), *this );
}
return xDMA->removeContentOrStylesFile(i_rFileName);
@@ -4229,8 +4229,8 @@ throw (uno::RuntimeException, lang::IllegalArgumentException,
const uno::Reference<rdf::XDocumentMetadataAccess> xDMA(
m_pData->CreateDMAUninitialized());
if (!xDMA.is()) {
- throw uno::RuntimeException( ::rtl::OUString::createFromAscii(
- "model has no document metadata"), *this );
+ throw uno::RuntimeException( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "model has no document metadata")), *this );
}
try {
@@ -4256,8 +4256,8 @@ throw (uno::RuntimeException, lang::IllegalArgumentException,
const uno::Reference<rdf::XDocumentMetadataAccess> xDMA(m_pData->GetDMA());
if (!xDMA.is()) {
- throw uno::RuntimeException( ::rtl::OUString::createFromAscii(
- "model has no document metadata"), *this );
+ throw uno::RuntimeException( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "model has no document metadata")), *this );
}
return xDMA->storeMetadataToStorage(i_xStorage);
@@ -4274,8 +4274,8 @@ throw (uno::RuntimeException, lang::IllegalArgumentException,
const uno::Reference<rdf::XDocumentMetadataAccess> xDMA(
m_pData->CreateDMAUninitialized());
if (!xDMA.is()) {
- throw uno::RuntimeException( ::rtl::OUString::createFromAscii(
- "model has no document metadata"), *this );
+ throw uno::RuntimeException( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "model has no document metadata")), *this );
}
try {
@@ -4300,8 +4300,8 @@ throw (uno::RuntimeException, lang::IllegalArgumentException,
const uno::Reference<rdf::XDocumentMetadataAccess> xDMA(m_pData->GetDMA());
if (!xDMA.is()) {
- throw uno::RuntimeException( ::rtl::OUString::createFromAscii(
- "model has no document metadata"), *this );
+ throw uno::RuntimeException( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ "model has no document metadata")), *this );
}
return xDMA->storeMetadataToMedium(i_rMedium);