diff options
| author | Jon Phillips <jon@fabricatorz.com> | 2006-08-25 07:03:19 +0000 |
|---|---|---|
| committer | kidproto <kidproto@users.sourceforge.net> | 2006-08-25 07:03:19 +0000 |
| commit | 5d6f51f32ca2356b0d6155015457a83e60b314e8 (patch) | |
| tree | 835131f8041d12103ea82dc6b23917443f61cd42 /src/color.h | |
| parent | I peeled back my changes because of some deep error. (diff) | |
| download | inkscape-5d6f51f32ca2356b0d6155015457a83e60b314e8.tar.gz inkscape-5d6f51f32ca2356b0d6155015457a83e60b314e8.zip | |
peeled back the gboolean code as it hit on some complexity theory principles...
need to rethink and incrementally change gbooleans to bools
(bzr r1637)
Diffstat (limited to 'src/color.h')
| -rw-r--r-- | src/color.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/color.h b/src/color.h index 824604afc..2c3f91fe7 100644 --- a/src/color.h +++ b/src/color.h @@ -64,8 +64,8 @@ SPColorSpaceType sp_color_get_colorspace_type (const SPColor *color); void sp_color_copy (SPColor *dst, const SPColor *src); -bool sp_color_is_equal (const SPColor *c0, const SPColor *c1); -bool sp_color_is_close (const SPColor *c0, const SPColor *c1, float epsilon); +gboolean sp_color_is_equal (const SPColor *c0, const SPColor *c1); +gboolean sp_color_is_close (const SPColor *c0, const SPColor *c1, float epsilon); void sp_color_set_rgb_float (SPColor *color, float r, float g, float b); void sp_color_set_rgb_rgba32 (SPColor *color, guint32 value); |
