summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9f4c77c)
raw | patch | inline | side by side (parent: 9f4c77c)
author | joncruz <joncruz@users.sourceforge.net> | |
Sun, 2 Apr 2006 20:33:45 +0000 (20:33 +0000) | ||
committer | joncruz <joncruz@users.sourceforge.net> | |
Sun, 2 Apr 2006 20:33:45 +0000 (20:33 +0000) |
ChangeLog | patch | blob | history | |
src/knot.h | patch | blob | history |
diff --git a/ChangeLog b/ChangeLog
index b8ceddef996b38083959d792b167f89d1310d930..48aac83a61c42bb3be1995098894c893edc3da76 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
+2005-04-02 Jon A. Cruz <jon@joncruz.org>
+
+ * src/knot.h: Fixed warning messages.
+
2006-04-01 Jon A. Cruz <jon@joncruz.org>
* src/ui/widget/selected-style.cpp:
diff --git a/src/knot.h b/src/knot.h
index 71342b4ef0904c5193b847bee40c5fbd4e4c069b..795eeb8e30064f2d860dc2b5810efad69a9ec146 100644 (file)
--- a/src/knot.h
+++ b/src/knot.h
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]);
}