diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2006-04-02 20:33:45 +0000 |
|---|---|---|
| committer | joncruz <joncruz@users.sourceforge.net> | 2006-04-02 20:33:45 +0000 |
| commit | 4585f2c3830efc0be57aa66ed7e3b2cbf908e1a7 (patch) | |
| tree | d69950a6d1fa68a208c02ff519a8f29d94604ace /src/knot.h | |
| parent | Check for null pointer (diff) | |
| download | inkscape-4585f2c3830efc0be57aa66ed7e3b2cbf908e1a7.tar.gz inkscape-4585f2c3830efc0be57aa66ed7e3b2cbf908e1a7.zip | |
Fixed warnings
(bzr r400)
Diffstat (limited to 'src/knot.h')
| -rw-r--r-- | src/knot.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/knot.h b/src/knot.h index 71342b4ef..795eeb8e3 100644 --- a/src/knot.h +++ b/src/knot.h @@ -63,27 +63,27 @@ struct SPKnot { gchar *tip; //TODO: all the members above should eventualle become private, accessible via setters/getters - void inline setSize (guint i) {size = i;} - void inline setShape (guint i) {shape = (SPKnotShapeType) i;} - void inline setAnchor (guint i) {anchor = (GtkAnchorType) i;} - void inline setMode (guint i) {mode = (SPKnotModeType) i;} - void inline setPixbuf (gpointer p) {pixbuf = p;} - void inline setFill (guint32 normal, guint32 mouseover, guint32 dragging) { + inline void setSize (guint i) {size = i;} + inline void setShape (guint i) {shape = (SPKnotShapeType) i;} + inline void setAnchor (guint i) {anchor = (GtkAnchorType) i;} + inline void setMode (guint i) {mode = (SPKnotModeType) i;} + inline void setPixbuf (gpointer p) {pixbuf = p;} + inline void setFill (guint32 normal, guint32 mouseover, guint32 dragging) { fill[SP_KNOT_STATE_NORMAL] = normal; fill[SP_KNOT_STATE_MOUSEOVER] = mouseover; fill[SP_KNOT_STATE_DRAGGING] = dragging; } - void inline setStroke (guint32 normal, guint32 mouseover, guint32 dragging) { + inline void setStroke (guint32 normal, guint32 mouseover, guint32 dragging) { stroke[SP_KNOT_STATE_NORMAL] = normal; stroke[SP_KNOT_STATE_MOUSEOVER] = mouseover; stroke[SP_KNOT_STATE_DRAGGING] = dragging; } - void inline setImage (guchar* normal, guchar* mouseover, guchar* dragging) { + inline void setImage (guchar* normal, guchar* mouseover, guchar* dragging) { image[SP_KNOT_STATE_NORMAL] = normal; image[SP_KNOT_STATE_MOUSEOVER] = mouseover; image[SP_KNOT_STATE_DRAGGING] = dragging; } - void inline setCursor (GdkCursor* normal, GdkCursor* mouseover, GdkCursor* dragging) { + inline void setCursor (GdkCursor* normal, GdkCursor* mouseover, GdkCursor* dragging) { if (cursor[SP_KNOT_STATE_NORMAL]) { gdk_cursor_unref(cursor[SP_KNOT_STATE_NORMAL]); } |
