diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-08-29 09:18:44 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2015-08-29 09:18:44 +0300 |
commit | 0e59d6c337531a3cb51e0c5b8c43ae1fc3d927f0 (patch) | |
tree | 6dd6052aadeff42fccfa43929deb4dc18d14a2e6 /vcl/win/source | |
parent | 15943416240e29a052e3a6e4d338932e8c1ffb06 (diff) |
WaE: 'rChunk' : unreferenced formal parameter
Change-Id: I1491ea35af3b8237a9b8f6357e6452b323139e99
Diffstat (limited to 'vcl/win/source')
-rw-r--r-- | vcl/win/source/gdi/winlayout.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/win/source/gdi/winlayout.cxx b/vcl/win/source/gdi/winlayout.cxx index 7bf8a8f54023..056c48a86cf5 100644 --- a/vcl/win/source/gdi/winlayout.cxx +++ b/vcl/win/source/gdi/winlayout.cxx @@ -119,7 +119,7 @@ char ColorFor(COLORREF aColor) return '0' + (10*(GetRValue(aColor) + GetGValue(aColor) + GetBValue(aColor))) / (0xFF*3); } -void DumpGlyphBitmap(OpenGLGlyphCacheChunk& rChunk, HDC hDC) +void DumpGlyphBitmap(HDC hDC) { HBITMAP hBitmap = static_cast<HBITMAP>(GetCurrentObject(hDC, OBJ_BITMAP)); if (hBitmap == NULL) @@ -430,7 +430,7 @@ bool ImplWinFontEntry::AddChunkOfGlyphs(int nGlyphIndex, const WinLayout& rLayou #ifdef SAL_DETAIL_ENABLE_LOG_INFO SAL_INFO("vcl.gdi.opengl", "this=" << this << " now: " << maOpenGLGlyphCache); - DumpGlyphBitmap(aChunk, aDC.getCompatibleHDC()); + DumpGlyphBitmap(aDC.getCompatibleHDC()); #endif return true; |