summaryrefslogtreecommitdiff
path: root/canvas/source/tools/propertysethelper.cxx
diff options
context:
space:
mode:
authorChr. Rossmanith <ChrRossmanith@gmx.de>2013-01-08 22:21:18 +0100
committerChr. Rossmanith <ChrRossmanith@gmx.de>2013-01-09 21:15:12 +0100
commit0968c304371a9e49d79f89e99c4ca4bf66f7b649 (patch)
tree440eb169640ad1094bdf1e35df1912fa8b9575ba /canvas/source/tools/propertysethelper.cxx
parent0a28778e9a2a02382ab5ccd79035500334504f17 (diff)
RTL_CONSTASCII_(U)STRINGPARAM removed in canvas
::rtl:: prefix removed from OUString as well Change-Id: I4de29a9c487ff2b87fdb5efa8e75aaf5b88402b0
Diffstat (limited to 'canvas/source/tools/propertysethelper.cxx')
-rw-r--r--canvas/source/tools/propertysethelper.cxx14
1 files changed, 6 insertions, 8 deletions
diff --git a/canvas/source/tools/propertysethelper.cxx b/canvas/source/tools/propertysethelper.cxx
index 03c87070254d..eabbe89b7670 100644
--- a/canvas/source/tools/propertysethelper.cxx
+++ b/canvas/source/tools/propertysethelper.cxx
@@ -26,22 +26,20 @@ namespace canvas
{
namespace
{
- void throwUnknown( const ::rtl::OUString& aPropertyName )
+ void throwUnknown( const OUString& aPropertyName )
{
throw beans::UnknownPropertyException(
- ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PropertySetHelper: property " )) +
- aPropertyName +
- ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( " not found." )),
+ "PropertySetHelper: property " +
+ aPropertyName + " not found.",
uno::Reference< uno::XInterface >()
);
}
- void throwVeto( const ::rtl::OUString& aPropertyName )
+ void throwVeto( const OUString& aPropertyName )
{
throw beans::PropertyVetoException(
- ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PropertySetHelper: property " )) +
- aPropertyName +
- ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( " access was vetoed." )),
+ "PropertySetHelper: property " +
+ aPropertyName + " access was vetoed.",
uno::Reference< uno::XInterface >() );
}