summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-08-18 10:09:25 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-08-18 10:09:25 +0200
commitc38b3a9a12c4011505834580f29772ab539410f2 (patch)
tree6df1f5771011f8584f786c89a5d7bf1d7dff6019 /sfx2
parenta100b31f0de13ab8fbf66d77dd24a798ae96d9dd (diff)
loplugin:nullptr (clang-cl)
Change-Id: I8eddd2cb43631d15a04f3edd3cf218232bda45af
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/doc/guisaveas.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/doc/guisaveas.cxx b/sfx2/source/doc/guisaveas.cxx
index 21d1f2e4b74c..d6eb070dea0f 100644
--- a/sfx2/source/doc/guisaveas.cxx
+++ b/sfx2/source/doc/guisaveas.cxx
@@ -1166,7 +1166,7 @@ OUString ModelData_Impl::GetRecommendedDir( const OUString& aSuggestedDir )
if( !bIsInTempPath )
{
wchar_t sPath[MAX_PATH+1];
- HRESULT hRes = SHGetFolderPathW( NULL, CSIDL_INTERNET_CACHE, NULL, SHGFP_TYPE_CURRENT, sPath );
+ HRESULT hRes = SHGetFolderPathW( nullptr, CSIDL_INTERNET_CACHE, nullptr, SHGFP_TYPE_CURRENT, sPath );
if( SUCCEEDED(hRes) )
{
OUString sTempINetFiles;