summaryrefslogtreecommitdiffstats
path: root/unodevtools
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-06-07 15:13:41 +0200
committerMichael Stahl <mstahl@redhat.com>2012-06-07 15:18:47 +0200
commit34578f1f0e2683c4a75b7c5c89c04d5b931689cc (patch)
tree8b79b637a418534cc11c1638d912faaee4b1f454 /unodevtools
parentXInterfaceTypeDescription missing from isBootstrapType (diff)
downloadcore-34578f1f0e2683c4a75b7c5c89c04d5b931689cc.tar.gz
core-34578f1f0e2683c4a75b7c5c89c04d5b931689cc.zip
skeletonmaker: add back \" in string literal
Seems accidentally removed in ea489b3570efe7d9a53da91ba66fa1563d40ffbb. Change-Id: I7c4be5c41033ca8d4f66557efb30d17f8527b4a8 (cherry picked from commit 9af0eb7e998c7bbf514e324919b710a0ff601244)
Diffstat (limited to 'unodevtools')
-rw-r--r--unodevtools/source/skeletonmaker/cppcompskeleton.cxx2
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;
}