diff options
author | David Tardon <dtardon@redhat.com> | 2012-03-08 06:32:44 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-03-12 08:53:26 +0100 |
commit | 13718ea30c11968d8d5436ff24ddc6d9f2b64d05 (patch) | |
tree | 07a6e23b6da6ea40489b554a4ec1bcb711b7f990 /vcl | |
parent | b44e997ebe6e2bc3a1d88df8fc8f92b64711a12c (diff) |
WaE: passing NULL to non-pointer argument
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/win/source/gdi/salgdi3.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/win/source/gdi/salgdi3.cxx b/vcl/win/source/gdi/salgdi3.cxx index e6171ef18c3d..2cea95951d11 100644 --- a/vcl/win/source/gdi/salgdi3.cxx +++ b/vcl/win/source/gdi/salgdi3.cxx @@ -2649,7 +2649,7 @@ sal_Bool WinSalGraphics::CreateFontSubset( const rtl::OUString& rToFile, } // get raw font file data - const RawFontData xRawFontData( mhDC, NULL ); + const RawFontData xRawFontData( mhDC, 0 ); if( !xRawFontData.get() ) return FALSE; |