use the standard order of "static" and "inline" qualifiers.

2005-04-26  Sven Neumann  <sven@gimp.org>

	* plug-ins/common/colortoalpha.c: use the standard order of
	"static" and "inline" qualifiers.
This commit is contained in:
Sven Neumann 2005-04-26 09:16:24 +00:00 committed by Sven Neumann
parent 89c1535009
commit 3c3ed424dd
2 changed files with 9 additions and 4 deletions

View File

@ -1,7 +1,12 @@
2005-04-26 Sven Neumann <sven@gimp.org>
* plug-ins/common/colortoalpha.c: use the standard order of
"static" and "inline" qualifiers.
2005-04-25 DindinX <dindinx@gimp.org>
* plug-ins/common/colortoalpha.c: update the preview continuously when
the color changes in the color selector.
* plug-ins/common/colortoalpha.c: update the preview continuously
when the color changes in the color selector.
2005-04-25 Michael Natterer <mitch@gimp.org>

View File

@ -49,7 +49,7 @@ static void run (const gchar *name,
gint *nreturn_vals,
GimpParam **return_vals);
inline static void color_to_alpha (GimpRGB *src,
static inline void color_to_alpha (GimpRGB *src,
const GimpRGB *color);
static void to_alpha_func (const guchar *src,
guchar *dest,
@ -200,7 +200,7 @@ run (const gchar *name,
values[0].data.d_status = status;
}
inline static void
static inline void
color_to_alpha (GimpRGB *src,
const GimpRGB *color)
{