diff options
author | Tor Lillqvist <tml@collabora.com> | 2018-06-27 16:38:55 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2018-06-27 17:17:53 +0200 |
commit | fa7ebc82bbcee15cd75b42d1e7b8ef66ed719225 (patch) | |
tree | 7f47a84d39260d46a26ad1a904f4d60cdd06051a /vcl/quartz | |
parent | a29b1018972d4052f361553b40cb4da2d2a5d318 (diff) |
This should be a const NSString* so that we can pass such variables to it
Change-Id: I017c100f83faac64ad3a8430010c226b438e6a07
Reviewed-on: https://gerrit.libreoffice.org/56529
Tested-by: Jenkins
Reviewed-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'vcl/quartz')
-rw-r--r-- | vcl/quartz/utils.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/quartz/utils.cxx b/vcl/quartz/utils.cxx index 2a65acd0af2f..80c773889d2d 100644 --- a/vcl/quartz/utils.cxx +++ b/vcl/quartz/utils.cxx @@ -55,7 +55,7 @@ OUString GetOUString( CFStringRef rStr ) return aRet; } -OUString GetOUString( NSString* pStr ) +OUString GetOUString( const NSString* pStr ) { if( ! pStr ) { |