From: buliabyak Date: Tue, 13 Feb 2007 18:13:26 +0000 (+0000) Subject: removing forward declaration of a enum - is it valid at all? at least it worked for me X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=0c2473d6902e9b158b5bf695b85229106899a94b;p=inkscape.git removing forward declaration of a enum - is it valid at all? at least it worked for me --- 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() { diff --git a/src/shape-editor.h b/src/shape-editor.h index bd93668f7..37117331b 100644 --- a/src/shape-editor.h +++ b/src/shape-editor.h @@ -17,7 +17,6 @@ namespace Inkscape { namespace NodePath { class Path; -typedef enum NodeType; } } @@ -80,7 +79,7 @@ public: void delete_nodes(); void delete_nodes_preserving_shape(); - void set_node_type(Inkscape::NodePath::NodeType type); + void set_node_type(int type); void break_at_nodes(); void join_nodes();