diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-03-12 10:12:49 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-03-12 10:12:49 +0100 |
commit | 451d62196daee61d6b7f1631da43b7b42a2d4f0c (patch) | |
tree | b40f40c48ed8da9b3fa8503e55dd162527fb31d1 /ucb/source | |
parent | a451edce98f60b3b66b090a9cbbd3977901e1a14 (diff) |
loplugin:redundantfcast
Change-Id: I88842cc9c757eda08c26f175a810d781146ed1a3
Diffstat (limited to 'ucb/source')
-rw-r--r-- | ucb/source/core/ucbcmds.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/core/ucbcmds.cxx b/ucb/source/core/ucbcmds.cxx index 9bfcd10883e2..fd9feaab6278 100644 --- a/ucb/source/core/ucbcmds.cxx +++ b/ucb/source/core/ucbcmds.cxx @@ -241,7 +241,7 @@ CommandProcessorInfo::CommandProcessorInfo() uno::Sequence< ucb::CommandInfo > SAL_CALL CommandProcessorInfo::getCommands() { - return uno::Sequence< ucb::CommandInfo >( *m_pInfo ); + return *m_pInfo; } |