[Libreoffice-commits] core.git: vcl/win
Tor Lillqvist
tml at collabora.com
Fri Aug 28 23:23:13 PDT 2015
vcl/win/source/gdi/winlayout.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 0e59d6c337531a3cb51e0c5b8c43ae1fc3d927f0
Author: Tor Lillqvist <tml at collabora.com>
Date: Sat Aug 29 09:18:44 2015 +0300
WaE: 'rChunk' : unreferenced formal parameter
Change-Id: I1491ea35af3b8237a9b8f6357e6452b323139e99
diff --git a/vcl/win/source/gdi/winlayout.cxx b/vcl/win/source/gdi/winlayout.cxx
index 7bf8a8f..056c48a 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;
More information about the Libreoffice-commits
mailing list