Francois Gouget : gdiplus/tests: Make pixels_to_units() static.
Module: wine Branch: master Commit: 1051a107a47a6a3f0927ad196c7ab914bf6a3d5b URL: http://source.winehq.org/git/wine.git/?a=commit;h=1051a107a47a6a3f0927ad196c... Author: Francois Gouget <fgouget(a)free.fr> Date: Thu Aug 16 13:39:30 2012 +0200 gdiplus/tests: Make pixels_to_units() static. --- dlls/gdiplus/tests/graphics.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/gdiplus/tests/graphics.c b/dlls/gdiplus/tests/graphics.c index 1c6ef6e..ded80be 100644 --- a/dlls/gdiplus/tests/graphics.c +++ b/dlls/gdiplus/tests/graphics.c @@ -59,7 +59,7 @@ static REAL units_to_pixels(REAL units, GpUnit unit, REAL dpi) } /* converts value in pixels to a given unit */ -REAL pixels_to_units(REAL pixels, GpUnit unit, REAL dpi) +static REAL pixels_to_units(REAL pixels, GpUnit unit, REAL dpi) { switch (unit) {
participants (1)
-
Alexandre Julliard