Module: wine Branch: master Commit: 0065a115c6a3bd2f0b48e4f6fa59fc40e9bec499 URL: http://source.winehq.org/git/wine.git/?a=commit;h=0065a115c6a3bd2f0b48e4f6fa...
Author: Alexandre Julliard julliard@winehq.org Date: Mon Oct 19 11:44:39 2009 +0200
gdiplus: Remove a useless inline specifier.
---
dlls/gdiplus/gdiplus.c | 2 +- dlls/gdiplus/gdiplus_private.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/gdiplus/gdiplus.c b/dlls/gdiplus/gdiplus.c index 0effc71..9fe9332 100644 --- a/dlls/gdiplus/gdiplus.c +++ b/dlls/gdiplus/gdiplus.c @@ -418,7 +418,7 @@ void convert_32bppARGB_to_32bppPARGB(UINT width, UINT height, }
/* recursive deletion of GpRegion nodes */ -inline void delete_element(region_element* element) +void delete_element(region_element* element) { switch(element->type) { diff --git a/dlls/gdiplus/gdiplus_private.h b/dlls/gdiplus/gdiplus_private.h index 02c03dc..dfff66c 100644 --- a/dlls/gdiplus/gdiplus_private.h +++ b/dlls/gdiplus/gdiplus_private.h @@ -61,7 +61,7 @@ extern BOOL lengthen_path(GpPath *path, INT len); extern GpStatus trace_path(GpGraphics *graphics, GpPath *path);
typedef struct region_element region_element; -extern inline void delete_element(region_element *element); +extern void delete_element(region_element *element);
static inline INT roundr(REAL x) {