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

loplugin:passstuffbyref

Change-Id: Ibba2d7322a3708bce186bb6f8de44ffa18c5146e
üst 04834f4a
...@@ -61,12 +61,12 @@ struct UserData ...@@ -61,12 +61,12 @@ struct UserData
OUString sPropertyPath; OUString sPropertyPath;
Reference<XNameAccess> aXNameAccess; Reference<XNameAccess> aXNameAccess;
UserData( OUString rPropertyPath ) UserData( OUString const & rPropertyPath )
: bIsPropertyPath( true ) : bIsPropertyPath( true )
, sPropertyPath(rPropertyPath) , sPropertyPath(rPropertyPath)
{} {}
UserData( Reference<XNameAccess> rXNameAccess ) UserData( Reference<XNameAccess> const & rXNameAccess )
: bIsPropertyPath( false ) : bIsPropertyPath( false )
, aXNameAccess( rXNameAccess ) , aXNameAccess( rXNameAccess )
{} {}
......
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