diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-23 12:06:00 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-24 14:43:34 +0200 |
commit | 6f50961e69406a17d6ec998956a6b33208b1001b (patch) | |
tree | 413c83df969e73c5cba1e11ef3740afc748ee1f5 /officecfg | |
parent | 4e729de73f2947155248f8df5897380611b87917 (diff) |
remove more rtl::OUString and OString prefixes
which seem to have snuck back in since the great rounds of removals.
Change-Id: I85f7f5f4801c0b48dae8b50f51f83595b286d6a1
Reviewed-on: https://gerrit.libreoffice.org/62229
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'officecfg')
-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> |