Kaydet (Commit) e0bfdd10 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:stringcopy: basctl

Change-Id: I81e5cb61e1f09cdc8d07efc2fd07e6ba79fdc488
üst f0fddb1d
......@@ -2929,7 +2929,7 @@ std::vector< OUString > UnoTypeCodeCompletetor::GetXIdlClassMethods() const
{
for(sal_Int32 l = 0; l < aMethods.getLength(); ++l)
{
aRetVect.push_back( OUString(aMethods[l]->getName()) );
aRetVect.push_back( aMethods[l]->getName() );
}
}
}
......@@ -2946,7 +2946,7 @@ std::vector< OUString > UnoTypeCodeCompletetor::GetXIdlClassFields() const
{
for(sal_Int32 l = 0; l < aFields.getLength(); ++l)
{
aRetVect.push_back( OUString(aFields[l]->getName()) );
aRetVect.push_back( aFields[l]->getName() );
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment