Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion graf3d/gl/src/TGLFontManager.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ void TGLFont::Render(const TString &txt) const
}

// FTGL is not const correct.
const_cast<FTFont*>(fFont)->Render(txt);
const_cast<FTFont*>(fFont)->Render(txt.Data());

if (scaleDepth) {
glPopMatrix();
Expand Down
Loading