summaryrefslogtreecommitdiff
path: root/codemaker
diff options
context:
space:
mode:
Diffstat (limited to 'codemaker')
-rw-r--r--codemaker/source/codemaker/global.cxx3
-rw-r--r--codemaker/source/commoncpp/commoncpp.cxx3
2 files changed, 4 insertions, 2 deletions
diff --git a/codemaker/source/codemaker/global.cxx b/codemaker/source/codemaker/global.cxx
index 6d831b45dca8..1310a0b05608 100644
--- a/codemaker/source/codemaker/global.cxx
+++ b/codemaker/source/codemaker/global.cxx
@@ -22,6 +22,7 @@
#include <rtl/ustring.hxx>
#include <osl/thread.h>
#include <osl/file.hxx>
+#include <o3tl/string_view.hxx>
#include <string.h>
#include <string_view>
@@ -115,7 +116,7 @@ OString createFileNameFromType( const OString& destination,
sal_Int32 nIndex = 0;
do
{
- buffer.append(fileName.getToken(0, token, nIndex));
+ buffer.append(o3tl::getToken(fileName, 0, token, nIndex));
if( nIndex == -1 )
break;
diff --git a/codemaker/source/commoncpp/commoncpp.cxx b/codemaker/source/commoncpp/commoncpp.cxx
index c7dc2bdeb26c..117afaca2c8a 100644
--- a/codemaker/source/commoncpp/commoncpp.cxx
+++ b/codemaker/source/commoncpp/commoncpp.cxx
@@ -29,6 +29,7 @@
#include <rtl/string.hxx>
#include <rtl/ustring.hxx>
#include <sal/types.h>
+#include <o3tl/string_view.hxx>
#include <vector>
@@ -50,7 +51,7 @@ OString scopedCppName(OString const & type, bool ns_alias)
nPos = 0;
do
{
- tmpBuf.append("::" + type.getToken(0, c, nPos));
+ tmpBuf.append(OString::Concat("::") + o3tl::getToken(type, 0, c, nPos));
} while( nPos != -1 );
OString s(tmpBuf.makeStringAndClear());