fixed some typos.

This commit is contained in:
frese 2001-08-29 14:54:26 +00:00
parent 780cc2f939
commit f6d39682a3
1 changed files with 9 additions and 9 deletions

View File

@ -45,19 +45,19 @@ s48_value scx_Alloc_Named_Color(s48_value Xcolormap, s48_value color_name,
// swaped from util.c to this file
s48_value scx_Parse_Color (s48_value Xdpy, s48_value cmap, s48_value spec) {
XColor ret;
if (XParseColor (SCX_EXTRACT_DISPLAY(Xdpy),
SCX_EXTRACT_COLORMAP(cmap),
s48_extract_string(spec),
&ret))
return scx_create_Color (ret.red, ret.green, ret.blue);
return S48_FALSE;
XColor ret;
if (XParseColor (SCX_EXTRACT_DISPLAY(Xdpy),
SCX_EXTRACT_COLORMAP(cmap),
s48_extract_string(spec),
&ret))
return scx_Create_Color (ret.red, ret.green, ret.blue);
return S48_FALSE;
}
void scx_init_colormap(void) {
S48_EXPORT_FUNCTION(scx_Free_Colormap);
S48_EXPORT_FUNCTION(scx_Alloc_Color);
S48_EXPORT_FUNCTION(scx_Alloc_Named_Color);
S48_EXPORT_FUNKTION(scx_Parse_Color);
S48_EXPORT_FUNCTION(scx_Parse_Color);
}