summaryrefslogtreecommitdiff
path: root/vcl/win/source/gdi/winlayout.cxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2015-08-29 09:18:44 +0300
committerTor Lillqvist <tml@collabora.com>2015-08-29 09:18:44 +0300
commit0e59d6c337531a3cb51e0c5b8c43ae1fc3d927f0 (patch)
tree6dd6052aadeff42fccfa43929deb4dc18d14a2e6 /vcl/win/source/gdi/winlayout.cxx
parent15943416240e29a052e3a6e4d338932e8c1ffb06 (diff)
WaE: 'rChunk' : unreferenced formal parameter
Change-Id: I1491ea35af3b8237a9b8f6357e6452b323139e99
Diffstat (limited to 'vcl/win/source/gdi/winlayout.cxx')
-rw-r--r--vcl/win/source/gdi/winlayout.cxx4
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;