diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-03-19 09:22:44 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-03-19 09:00:26 +0000 |
commit | 8b27d78b4afaa9c47ca0fda144c8060f2f14046b (patch) | |
tree | 2dbddceebf0f96492adc5652697e8efce8a8ba06 /svtools/source/contnr/contentenumeration.cxx | |
parent | fe8eba5faa59ddf9ee82f3eb009daac72a0ec846 (diff) |
automated removal of RTL_CONSTASCII_USTRINGPARAM for quoted OUStrings
Done with a perl regex:
s/OUString\s*\(\s*RTL_CONSTASCII_USTRINGPARAM\s*\((\s*"[^")]*?"\s*)\)\s*\)/OUString\($1\)/gms
Change-Id: Idf28320817cdcbea6d0f7ec06a9bf51bd2c3b3ec
Reviewed-on: https://gerrit.libreoffice.org/2832
Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'svtools/source/contnr/contentenumeration.cxx')
-rw-r--r-- | svtools/source/contnr/contentenumeration.cxx | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/svtools/source/contnr/contentenumeration.cxx b/svtools/source/contnr/contentenumeration.cxx index 766221a5badc..16fd91535a54 100644 --- a/svtools/source/contnr/contentenumeration.cxx +++ b/svtools/source/contnr/contentenumeration.cxx @@ -159,18 +159,18 @@ namespace svt Reference< XResultSet > xResultSet; Sequence< OUString > aProps(12); - aProps[0] = OUString( RTL_CONSTASCII_USTRINGPARAM( "Title" )); - aProps[1] = OUString( RTL_CONSTASCII_USTRINGPARAM( "Size" )); - aProps[2] = OUString( RTL_CONSTASCII_USTRINGPARAM( "DateModified" )); - aProps[3] = OUString( RTL_CONSTASCII_USTRINGPARAM( "DateCreated" )); - aProps[4] = OUString( RTL_CONSTASCII_USTRINGPARAM( "IsFolder" )); - aProps[5] = OUString( RTL_CONSTASCII_USTRINGPARAM( "TargetURL" )); - aProps[6] = OUString( RTL_CONSTASCII_USTRINGPARAM( "IsHidden" )); - aProps[7] = OUString( RTL_CONSTASCII_USTRINGPARAM( "IsVolume" )); - aProps[8] = OUString( RTL_CONSTASCII_USTRINGPARAM( "IsRemote" )); - aProps[9] = OUString( RTL_CONSTASCII_USTRINGPARAM( "IsRemoveable" )); - aProps[10] = OUString( RTL_CONSTASCII_USTRINGPARAM( "IsFloppy" )); - aProps[11] = OUString( RTL_CONSTASCII_USTRINGPARAM( "IsCompactDisc" )); + aProps[0] = OUString( "Title" ); + aProps[1] = OUString( "Size" ); + aProps[2] = OUString( "DateModified" ); + aProps[3] = OUString( "DateCreated" ); + aProps[4] = OUString( "IsFolder" ); + aProps[5] = OUString( "TargetURL" ); + aProps[6] = OUString( "IsHidden" ); + aProps[7] = OUString( "IsVolume" ); + aProps[8] = OUString( "IsRemote" ); + aProps[9] = OUString( "IsRemoveable" ); + aProps[10] = OUString( "IsFloppy" ); + aProps[11] = OUString( "IsCompactDisc" ); Reference< XCommandEnvironment > xEnvironment; try @@ -266,8 +266,8 @@ namespace svt ::ucbhelper::Content aCnt( aTargetURL, xEnvironment, comphelper::getProcessComponentContext() ); try { - aCnt.getPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "Size" )) ) >>= pData->maSize; - aCnt.getPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "DateModified" )) ) >>= aDT; + aCnt.getPropertyValue( OUString( "Size" ) ) >>= pData->maSize; + aCnt.getPropertyValue( OUString( "DateModified" ) ) >>= aDT; } catch (...) {} } |