summaryrefslogtreecommitdiffstats
path: root/src/shape-editor.cpp
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2007-02-13 18:13:26 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2007-02-13 18:13:26 +0000
commitebf545db8daba21cab462d566f8dacf4ebe5006c (patch)
tree9e986a4148763aa7a8519e0f3bc6e8b31bff069e /src/shape-editor.cpp
parentisolate the nodepath-or-knotholder unit into the new ShapeEditor class which ... (diff)
downloadinkscape-ebf545db8daba21cab462d566f8dacf4ebe5006c.tar.gz
inkscape-ebf545db8daba21cab462d566f8dacf4ebe5006c.zip
removing forward declaration of a enum - is it valid at all? at least it worked for me
(bzr r2375)
Diffstat (limited to 'src/shape-editor.cpp')
-rw-r--r--src/shape-editor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shape-editor.cpp b/src/shape-editor.cpp
index 19b9ea64d..491037bd1 100644
--- a/src/shape-editor.cpp
+++ b/src/shape-editor.cpp
@@ -352,8 +352,8 @@ void ShapeEditor::delete_nodes_preserving_shape () {
}
}
-void ShapeEditor::set_node_type(Inkscape::NodePath::NodeType type) {
- sp_node_selected_set_type(type); // FIXME fix that function by removing nodepath_current lookup, and pass it this->nodepath instead (needs fixing verbs/buttons first)
+void ShapeEditor::set_node_type(int type) {
+ sp_node_selected_set_type((Inkscape::NodePath::NodeType) type); // FIXME fix that function by removing nodepath_current lookup, and pass it this->nodepath instead (needs fixing verbs/buttons first)
}
void ShapeEditor::break_at_nodes() {