diff options
-rw-r--r-- | cui/source/options/optaboutconfig.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/options/optaboutconfig.cxx b/cui/source/options/optaboutconfig.cxx index cd1cd4bcff26..ebebbd9bf7b1 100644 --- a/cui/source/options/optaboutconfig.cxx +++ b/cui/source/options/optaboutconfig.cxx @@ -61,12 +61,12 @@ struct UserData OUString sPropertyPath; Reference<XNameAccess> aXNameAccess; - UserData( OUString rPropertyPath ) + UserData( OUString const & rPropertyPath ) : bIsPropertyPath( true ) , sPropertyPath(rPropertyPath) {} - UserData( Reference<XNameAccess> rXNameAccess ) + UserData( Reference<XNameAccess> const & rXNameAccess ) : bIsPropertyPath( false ) , aXNameAccess( rXNameAccess ) {} |