summaryrefslogtreecommitdiffstats
path: root/include/registry/reader.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/registry/reader.hxx')
-rw-r--r--include/registry/reader.hxx64
1 files changed, 32 insertions, 32 deletions
diff --git a/include/registry/reader.hxx b/include/registry/reader.hxx
index cb0a65219fa6..e1a06f04018e 100644
--- a/include/registry/reader.hxx
+++ b/include/registry/reader.hxx
@@ -141,13 +141,13 @@ public:
@exception std::bad_alloc is raised if an out-of-memory condition occurs
*/
- OUString getDocumentation() const {
+ rtl::OUString getDocumentation() const {
rtl_uString * s = 0;
typereg_reader_getDocumentation(m_handle, &s);
if (s == 0) {
throw std::bad_alloc();
}
- return OUString(s, SAL_NO_ACQUIRE);
+ return rtl::OUString(s, SAL_NO_ACQUIRE);
}
/**
@@ -159,13 +159,13 @@ public:
@exception std::bad_alloc is raised if an out-of-memory condition occurs
@deprecated
*/
- OUString getFileName() const {
+ rtl::OUString getFileName() const {
rtl_uString * s = 0;
typereg_reader_getFileName(m_handle, &s);
if (s == 0) {
throw std::bad_alloc();
}
- return OUString(s, SAL_NO_ACQUIRE);
+ return rtl::OUString(s, SAL_NO_ACQUIRE);
}
/**
@@ -200,13 +200,13 @@ public:
@exception std::bad_alloc is raised if an out-of-memory condition occurs
*/
- OUString getTypeName() const {
+ rtl::OUString getTypeName() const {
rtl_uString * s = 0;
typereg_reader_getTypeName(m_handle, &s);
if (s == 0) {
throw std::bad_alloc();
}
- return OUString(s, SAL_NO_ACQUIRE);
+ return rtl::OUString(s, SAL_NO_ACQUIRE);
}
/**
@@ -229,13 +229,13 @@ public:
@exception std::bad_alloc is raised if an out-of-memory condition occurs
*/
- OUString getSuperTypeName(sal_uInt16 index) const {
+ rtl::OUString getSuperTypeName(sal_uInt16 index) const {
rtl_uString * s = 0;
typereg_reader_getSuperTypeName(m_handle, &s, index);
if (s == 0) {
throw std::bad_alloc();
}
- return OUString(s, SAL_NO_ACQUIRE);
+ return rtl::OUString(s, SAL_NO_ACQUIRE);
}
/**
@@ -257,13 +257,13 @@ public:
@exception std::bad_alloc is raised if an out-of-memory condition occurs
*/
- OUString getFieldDocumentation(sal_uInt16 index) const {
+ rtl::OUString getFieldDocumentation(sal_uInt16 index) const {
rtl_uString * s = 0;
typereg_reader_getFieldDocumentation(m_handle, &s, index);
if (s == 0) {
throw std::bad_alloc();
}
- return OUString(s, SAL_NO_ACQUIRE);
+ return rtl::OUString(s, SAL_NO_ACQUIRE);
}
/**
@@ -276,13 +276,13 @@ public:
@exception std::bad_alloc is raised if an out-of-memory condition occurs
@deprecated
*/
- OUString getFieldFileName(sal_uInt16 index) const {
+ rtl::OUString getFieldFileName(sal_uInt16 index) const {
rtl_uString * s = 0;
typereg_reader_getFieldFileName(m_handle, &s, index);
if (s == 0) {
throw std::bad_alloc();
}
- return OUString(s, SAL_NO_ACQUIRE);
+ return rtl::OUString(s, SAL_NO_ACQUIRE);
}
/**
@@ -305,13 +305,13 @@ public:
@exception std::bad_alloc is raised if an out-of-memory condition occurs
*/
- OUString getFieldName(sal_uInt16 index) const {
+ rtl::OUString getFieldName(sal_uInt16 index) const {
rtl_uString * s = 0;
typereg_reader_getFieldName(m_handle, &s, index);
if (s == 0) {
throw std::bad_alloc();
}
- return OUString(s, SAL_NO_ACQUIRE);
+ return rtl::OUString(s, SAL_NO_ACQUIRE);
}
/**
@@ -323,13 +323,13 @@ public:
@exception std::bad_alloc is raised if an out-of-memory condition occurs
*/
- OUString getFieldTypeName(sal_uInt16 index) const {
+ rtl::OUString getFieldTypeName(sal_uInt16 index) const {
rtl_uString * s = 0;
typereg_reader_getFieldTypeName(m_handle, &s, index);
if (s == 0) {
throw std::bad_alloc();
}
- return OUString(s, SAL_NO_ACQUIRE);
+ return rtl::OUString(s, SAL_NO_ACQUIRE);
}
/**
@@ -370,13 +370,13 @@ public:
@exception std::bad_alloc is raised if an out-of-memory condition occurs
*/
- OUString getMethodDocumentation(sal_uInt16 index) const {
+ rtl::OUString getMethodDocumentation(sal_uInt16 index) const {
rtl_uString * s = 0;
typereg_reader_getMethodDocumentation(m_handle, &s, index);
if (s == 0) {
throw std::bad_alloc();
}
- return OUString(s, SAL_NO_ACQUIRE);
+ return rtl::OUString(s, SAL_NO_ACQUIRE);
}
/**
@@ -399,13 +399,13 @@ public:
@exception std::bad_alloc is raised if an out-of-memory condition occurs
*/
- OUString getMethodName(sal_uInt16 index) const {
+ rtl::OUString getMethodName(sal_uInt16 index) const {
rtl_uString * s = 0;
typereg_reader_getMethodName(m_handle, &s, index);
if (s == 0) {
throw std::bad_alloc();
}
- return OUString(s, SAL_NO_ACQUIRE);
+ return rtl::OUString(s, SAL_NO_ACQUIRE);
}
/**
@@ -417,13 +417,13 @@ public:
@exception std::bad_alloc is raised if an out-of-memory condition occurs
*/
- OUString getMethodReturnTypeName(sal_uInt16 index) const {
+ rtl::OUString getMethodReturnTypeName(sal_uInt16 index) const {
rtl_uString * s = 0;
typereg_reader_getMethodReturnTypeName(m_handle, &s, index);
if (s == 0) {
throw std::bad_alloc();
}
- return OUString(s, SAL_NO_ACQUIRE);
+ return rtl::OUString(s, SAL_NO_ACQUIRE);
}
/**
@@ -468,7 +468,7 @@ public:
@exception std::bad_alloc is raised if an out-of-memory condition occurs
*/
- OUString getMethodParameterName(
+ rtl::OUString getMethodParameterName(
sal_uInt16 methodIndex, sal_uInt16 parameterIndex) const
{
rtl_uString * s = 0;
@@ -477,7 +477,7 @@ public:
if (s == 0) {
throw std::bad_alloc();
}
- return OUString(s, SAL_NO_ACQUIRE);
+ return rtl::OUString(s, SAL_NO_ACQUIRE);
}
/**
@@ -493,7 +493,7 @@ public:
@exception std::bad_alloc is raised if an out-of-memory condition occurs
*/
- OUString getMethodParameterTypeName(
+ rtl::OUString getMethodParameterTypeName(
sal_uInt16 methodIndex, sal_uInt16 parameterIndex) const
{
rtl_uString * s = 0;
@@ -502,7 +502,7 @@ public:
if (s == 0) {
throw std::bad_alloc();
}
- return OUString(s, SAL_NO_ACQUIRE);
+ return rtl::OUString(s, SAL_NO_ACQUIRE);
}
/**
@@ -529,7 +529,7 @@ public:
@exception std::bad_alloc is raised if an out-of-memory condition occurs
*/
- OUString getMethodExceptionTypeName(
+ rtl::OUString getMethodExceptionTypeName(
sal_uInt16 methodIndex, sal_uInt16 exceptionIndex) const
{
rtl_uString * s = 0;
@@ -538,7 +538,7 @@ public:
if (s == 0) {
throw std::bad_alloc();
}
- return OUString(s, SAL_NO_ACQUIRE);
+ return rtl::OUString(s, SAL_NO_ACQUIRE);
}
/**
@@ -561,13 +561,13 @@ public:
@exception std::bad_alloc is raised if an out-of-memory condition occurs
*/
- OUString getReferenceDocumentation(sal_uInt16 index) const {
+ rtl::OUString getReferenceDocumentation(sal_uInt16 index) const {
rtl_uString * s = 0;
typereg_reader_getReferenceDocumentation(m_handle, &s, index);
if (s == 0) {
throw std::bad_alloc();
}
- return OUString(s, SAL_NO_ACQUIRE);
+ return rtl::OUString(s, SAL_NO_ACQUIRE);
}
/**
@@ -604,13 +604,13 @@ public:
@exception std::bad_alloc is raised if an out-of-memory condition occurs
*/
- OUString getReferenceTypeName(sal_uInt16 index) const {
+ rtl::OUString getReferenceTypeName(sal_uInt16 index) const {
rtl_uString * s = 0;
typereg_reader_getReferenceTypeName(m_handle, &s, index);
if (s == 0) {
throw std::bad_alloc();
}
- return OUString(s, SAL_NO_ACQUIRE);
+ return rtl::OUString(s, SAL_NO_ACQUIRE);
}
private: