summaryrefslogtreecommitdiff
path: root/codemaker/source/codemaker/unotype.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'codemaker/source/codemaker/unotype.cxx')
-rw-r--r--codemaker/source/codemaker/unotype.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/codemaker/source/codemaker/unotype.cxx b/codemaker/source/codemaker/unotype.cxx
index 9adb9e1bc47b..8f2c89537c77 100644
--- a/codemaker/source/codemaker/unotype.cxx
+++ b/codemaker/source/codemaker/unotype.cxx
@@ -26,7 +26,7 @@
#include <vector>
-codemaker::UnoType::Sort codemaker::UnoType::getSort(rtl::OString const & type)
+codemaker::UnoType::Sort codemaker::UnoType::getSort(OString const & type)
{
return type == "void" ? SORT_VOID
: type == "boolean" ? SORT_BOOLEAN
@@ -46,13 +46,13 @@ codemaker::UnoType::Sort codemaker::UnoType::getSort(rtl::OString const & type)
: SORT_COMPLEX;
}
-bool codemaker::UnoType::isSequenceType(rtl::OString const & type) {
+bool codemaker::UnoType::isSequenceType(OString const & type) {
return !type.isEmpty() && type[0] == '[';
}
-rtl::OString codemaker::UnoType::decompose(
- rtl::OString const & type, sal_Int32 * rank,
- std::vector< rtl::OString > * arguments)
+OString codemaker::UnoType::decompose(
+ OString const & type, sal_Int32 * rank,
+ std::vector< OString > * arguments)
{
sal_Int32 len = type.getLength();
sal_Int32 i = 0;