From: joncruz Date: Sun, 2 Apr 2006 20:33:45 +0000 (+0000) Subject: Fixed warnings X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=7dc9c1dcc41602bce4e6cde76adecd6d4d3ec5b2;p=inkscape.git Fixed warnings --- diff --git a/ChangeLog b/ChangeLog index b8ceddef9..48aac83a6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-04-02 Jon A. Cruz + + * src/knot.h: Fixed warning messages. + 2006-04-01 Jon A. Cruz * src/ui/widget/selected-style.cpp: 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]); }