1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-15 00:24:19 +00:00

Fixed missing cast in win32 GL code.

This commit is contained in:
jules 2012-05-06 18:06:15 +01:00
parent 154616d271
commit bb30a6da66

View file

@ -68,7 +68,7 @@ public:
}
if (contextToShareWith != nullptr)
wglShareLists (contextToShareWith, renderContext);
wglShareLists ((HGLRC) contextToShareWith, renderContext);
component.getTopLevelComponent()->repaint();
component.repaint();