diff options
| author | bulia byak <buliabyak@gmail.com> | 2009-02-14 00:26:56 +0000 |
|---|---|---|
| committer | buliabyak <buliabyak@users.sourceforge.net> | 2009-02-14 00:26:56 +0000 |
| commit | ae830640d36f258b22f6baa9c6d361409db18291 (patch) | |
| tree | 298715cd971d60f6e711f6d110cfe87deb3d1d07 /src/sp-shape.cpp | |
| parent | remove temporary prevention of retransientization - this hack was added long ... (diff) | |
| download | inkscape-ae830640d36f258b22f6baa9c6d361409db18291.tar.gz inkscape-ae830640d36f258b22f6baa9c6d361409db18291.zip | |
warning fix
(bzr r7292)
Diffstat (limited to 'src/sp-shape.cpp')
| -rw-r--r-- | src/sp-shape.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp-shape.cpp b/src/sp-shape.cpp index 4adf883a4..178ca89a8 100644 --- a/src/sp-shape.cpp +++ b/src/sp-shape.cpp @@ -952,7 +952,7 @@ sp_shape_set_marker (SPObject *object, unsigned int key, const gchar *value) SPItem *item = (SPItem *) object; SPShape *shape = (SPShape *) object; - if (key < 0 || key > SP_MARKER_LOC_END) { + if (key > SP_MARKER_LOC_END) { return; } |
