diff options
Diffstat (limited to 'officecfg/registry/cppheader.xsl')
-rw-r--r-- | officecfg/registry/cppheader.xsl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/officecfg/registry/cppheader.xsl b/officecfg/registry/cppheader.xsl index a09043f4f8f8..9a8042b49f0a 100644 --- a/officecfg/registry/cppheader.xsl +++ b/officecfg/registry/cppheader.xsl @@ -129,7 +129,7 @@ <xsl:text>: public comphelper::ConfigurationGroup< </xsl:text> <xsl:value-of select="$name"/> <xsl:text>> {
</xsl:text> - <xsl:text> static rtl::OUString path() { return rtl::OUString(<!-- + <xsl:text> static OUString path() { return OUString(<!-- -->"</xsl:text> <xsl:value-of select="$path"/> <xsl:text>/</xsl:text> @@ -163,7 +163,7 @@ <xsl:text>: public comphelper::ConfigurationSet< </xsl:text> <xsl:value-of select="$name"/> <xsl:text>> {
</xsl:text> - <xsl:text> static rtl::OUString path() { return rtl::OUString(<!-- + <xsl:text> static OUString path() { return OUString(<!-- -->"</xsl:text> <xsl:value-of select="$path"/> <xsl:text>/</xsl:text> @@ -220,7 +220,7 @@ <xsl:text>double</xsl:text> </xsl:when> <xsl:when test="@oor:type='xs:string'"> - <xsl:text>rtl::OUString</xsl:text> + <xsl:text>OUString</xsl:text> </xsl:when> <xsl:when test="@oor:type='xs:hexBinary'"> <xsl:text>com::sun::star::uno::Sequence<sal_Int8> </xsl:text> @@ -241,7 +241,7 @@ <xsl:text>com::sun::star::uno::Sequence<double> </xsl:text> </xsl:when> <xsl:when test="@oor:type='oor:string-list'"> - <xsl:text>com::sun::star::uno::Sequence<rtl::OUString> </xsl:text> + <xsl:text>com::sun::star::uno::Sequence<OUString> </xsl:text> </xsl:when> <xsl:when test="@oor:type='oor:hexBinary-list'"> <xsl:text>com::sun::star::uno::Sequence<<!-- @@ -252,7 +252,7 @@ <xsl:text>> </xsl:text> </xsl:if> <xsl:text>> {
</xsl:text> - <xsl:text> static rtl::OUString path() { return rtl::OUString(<!-- + <xsl:text> static OUString path() { return OUString(<!-- -->"</xsl:text> <xsl:value-of select="$path"/> <xsl:text>/</xsl:text> |