1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-03 03:30:06 +00:00

Some win32 clean-ups.

This commit is contained in:
Julian Storer 2010-05-10 11:16:00 +01:00
parent 6fd0c918d9
commit 42666db484
28 changed files with 1465 additions and 1475 deletions

View file

@ -532,7 +532,7 @@ void Graphics::drawHorizontalLine (const int y, float left, float right) const
void Graphics::drawLine (float x1, float y1, float x2, float y2) const
{
context->drawLine (x1, y1, x2, y2);
context->drawLine (Line<float> (x1, y1, x2, y2));
}
void Graphics::drawLine (const float startX, const float startY,