summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/ext
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-01-30 16:38:54 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-01-31 08:56:20 +0000
commit1c3e84d8192218befebcddae2ed9842d081dc6c7 (patch)
treef4fc5cddd181d6d49bf55f74e6d3d107b8ae8d18 /ucb/source/ucp/ext
parente1e6cdbb1e9ff37f0bb740a70045c66953bec50c (diff)
teach lolugin:stringconstant about calling constructors
so we can remove unnecessary calls to the OUString(literal) constructor when calling constructors like this: Foo(OUString("xxx"), 1) Change-Id: I1de60ef561437c86b27dc9cb095a5deb2e103b36 Reviewed-on: https://gerrit.libreoffice.org/33698 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'ucb/source/ucp/ext')
-rw-r--r--ucb/source/ucp/ext/ucpext_content.cxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/ucb/source/ucp/ext/ucpext_content.cxx b/ucb/source/ucp/ext/ucpext_content.cxx
index 85a008dee62b..950a953fed99 100644
--- a/ucb/source/ucp/ext/ucpext_content.cxx
+++ b/ucb/source/ucp/ext/ucpext_content.cxx
@@ -417,22 +417,22 @@ namespace ucb { namespace ucp { namespace ext
else
{
// Append all Core Properties.
- xRow->appendString ( Property( OUString("ContentType"),
+ xRow->appendString ( Property( "ContentType",
-1,
cppu::UnoType<OUString>::get(),
PropertyAttribute::BOUND | PropertyAttribute::READONLY ),
ContentProvider::getArtificialNodeContentType() );
- xRow->appendString ( Property( OUString("Title"),
+ xRow->appendString ( Property( "Title",
-1,
cppu::UnoType<OUString>::get(),
PropertyAttribute::BOUND | PropertyAttribute::READONLY ),
i_rTitle );
- xRow->appendBoolean( Property( OUString("IsDocument"),
+ xRow->appendBoolean( Property( "IsDocument",
-1,
cppu::UnoType<bool>::get(),
PropertyAttribute::BOUND | PropertyAttribute::READONLY ),
false );
- xRow->appendBoolean( Property( OUString("IsFolder"),
+ xRow->appendBoolean( Property( "IsFolder",
-1,
cppu::UnoType<bool>::get(),
PropertyAttribute::BOUND | PropertyAttribute::READONLY ),
@@ -536,22 +536,22 @@ namespace ucb { namespace ucp { namespace ext
// Mandatory commands
CommandInfo(
- OUString( "getCommandInfo" ),
+ "getCommandInfo",
-1,
cppu::UnoType<void>::get()
),
CommandInfo(
- OUString( "getPropertySetInfo" ),
+ "getPropertySetInfo",
-1,
cppu::UnoType<void>::get()
),
CommandInfo(
- OUString( "getPropertyValues" ),
+ "getPropertyValues",
-1,
cppu::UnoType<Sequence< Property >>::get()
),
CommandInfo(
- OUString( "setPropertyValues" ),
+ "setPropertyValues",
-1,
cppu::UnoType<Sequence< PropertyValue >>::get()
)
@@ -559,7 +559,7 @@ namespace ucb { namespace ucp { namespace ext
// Optional standard commands
, CommandInfo(
- OUString( "open" ),
+ "open",
-1,
cppu::UnoType<OpenCommandArgument2>::get()
)
@@ -574,25 +574,25 @@ namespace ucb { namespace ucp { namespace ext
static const Property aProperties[] =
{
Property(
- OUString( "ContentType" ),
+ "ContentType",
-1,
cppu::UnoType<OUString>::get(),
PropertyAttribute::BOUND | PropertyAttribute::READONLY
),
Property(
- OUString( "IsDocument" ),
+ "IsDocument",
-1,
cppu::UnoType<bool>::get(),
PropertyAttribute::BOUND | PropertyAttribute::READONLY
),
Property(
- OUString( "IsFolder" ),
+ "IsFolder",
-1,
cppu::UnoType<bool>::get(),
PropertyAttribute::BOUND | PropertyAttribute::READONLY
),
Property(
- OUString( "Title" ),
+ "Title",
-1,
cppu::UnoType<OUString>::get(),
PropertyAttribute::BOUND | PropertyAttribute::READONLY