diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-06-07 15:13:41 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-06-07 15:17:41 +0200 |
commit | 9af0eb7e998c7bbf514e324919b710a0ff601244 (patch) | |
tree | 2968c8e289faf66ac58459aae75f3ee34a595a4c /unodevtools/source | |
parent | 0f86f678ff98115d32a381134985a1bd0d8c931e (diff) |
skeletonmaker: add back \" in string literal
Seems accidentally removed in ea489b3570efe7d9a53da91ba66fa1563d40ffbb.
Change-Id: I7c4be5c41033ca8d4f66557efb30d17f8527b4a8
Diffstat (limited to 'unodevtools/source')
-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; } |