Kaydet (Commit) a0fc658e authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Avoid accidental leftover unconditional debug printout

Change-Id: I67d2430aec782efa7916856584028f469d39355c
üst 7d9160c9
......@@ -276,9 +276,10 @@ bool ImplWinFontEntry::AddChunkOfGlyphs(int nGlyphIndex, const WinLayout& rLayou
return false;
}
std::ostringstream sLine;
for (int i = 0; i < nCount; i++)
std::cerr << aABC[i].abcA << ":" << aABC[i].abcB << ":" << aABC[i].abcC << " ";
std::cerr << std::endl;
sLine << aABC[i].abcA << ":" << aABC[i].abcB << ":" << aABC[i].abcC << " ";
SAL_INFO("vcl.gdi.opengl", "ABC widths: " << sLine.str());
// Try hard to avoid overlap as we want to be able to use
// individual rectangles for each glyph. The ABC widths don't
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment