diff options
| author | Maximilian Albert <maximilian.albert@gmail.com> | 2008-09-18 17:41:03 +0000 |
|---|---|---|
| committer | cilix42 <cilix42@users.sourceforge.net> | 2008-09-18 17:41:03 +0000 |
| commit | c05508d54ecd866e8e824af5116b8dba13314b61 (patch) | |
| tree | a9404d18229185d421ae47fa48207c8b3145cee4 /src/shape-editor.h | |
| parent | Fix prerender shortcut by size. Fixes bug #262916. (diff) | |
| download | inkscape-c05508d54ecd866e8e824af5116b8dba13314b61.tar.gz inkscape-c05508d54ecd866e8e824af5116b8dba13314b61.zip | |
Some NR::Point ==> Geom::Point replacements
(bzr r6835)
Diffstat (limited to 'src/shape-editor.h')
| -rw-r--r-- | src/shape-editor.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/shape-editor.h b/src/shape-editor.h index 4e7886957..9ce64355f 100644 --- a/src/shape-editor.h +++ b/src/shape-editor.h @@ -61,7 +61,7 @@ public: void update_statusbar (); - bool is_over_stroke (NR::Point event_p, bool remember); + bool is_over_stroke (Geom::Point event_p, bool remember); void add_node_near_point(); // uses the shapeeditor's remembered point, if any @@ -115,10 +115,10 @@ public: void show_handles (bool show); void show_helperpath (bool show); - void flip (NR::Dim2 axis, boost::optional<NR::Point> center = boost::optional<NR::Point>()); + void flip (Geom::Dim2 axis, boost::optional<Geom::Point> center = boost::optional<Geom::Point>()); - void distribute (NR::Dim2 axis); - void align (NR::Dim2 axis); + void distribute (Geom::Dim2 axis); + void align (Geom::Dim2 axis); bool nodepath_edits_repr_key(gchar const *name); @@ -135,8 +135,8 @@ private: double grab_t; int grab_node; // number of node grabbed by sp_node_context_is_over_stroke bool hit; - NR::Point curvepoint_event; // int coords from event - NR::Point curvepoint_doc; // same, in doc coords + Geom::Point curvepoint_event; // int coords from event + Geom::Point curvepoint_doc; // same, in doc coords Inkscape::XML::Node *listener_attached_for; }; |
