diff options
-rw-r--r-- | unodevtools/source/skeletonmaker/cppcompskeleton.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unodevtools/source/skeletonmaker/cppcompskeleton.cxx b/unodevtools/source/skeletonmaker/cppcompskeleton.cxx index 36dd8e4743f2..825e535ec7f4 100644 --- a/unodevtools/source/skeletonmaker/cppcompskeleton.cxx +++ b/unodevtools/source/skeletonmaker/cppcompskeleton.cxx @@ -165,7 +165,7 @@ void generateCompHelperDefinition(std::ostream & o, short i=0; while (iter != services.end()) { - o << " s[" << i++ << "] = ::rtl::OUString(" + o << " s[" << i++ << "] = ::rtl::OUString(\"" << (*iter).replace('/','.') << "\");\n"; ++iter; } |