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

loplugin:passstuffbyref

Change-Id: I882ef5f8d1193ab3f3daeff0f4eb755c40c898ba
üst d3549ce6
......@@ -40,15 +40,15 @@ namespace sfx2 { namespace sidebar {
namespace
{
OUString getString(utl::OConfigurationNode aNode, const char* pNodeName)
OUString getString(utl::OConfigurationNode const & aNode, const char* pNodeName)
{
return comphelper::getString(aNode.getNodeValue(pNodeName));
}
sal_Int32 getInt32(utl::OConfigurationNode aNode, const char* pNodeName)
sal_Int32 getInt32(utl::OConfigurationNode const & aNode, const char* pNodeName)
{
return comphelper::getINT32(aNode.getNodeValue(pNodeName));
}
bool getBool(utl::OConfigurationNode aNode, const char* pNodeName)
bool getBool(utl::OConfigurationNode const & aNode, const char* pNodeName)
{
return comphelper::getBOOL(aNode.getNodeValue(pNodeName));
}
......
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