summaryrefslogtreecommitdiffstats
path: root/src/gradient-context.h
diff options
context:
space:
mode:
authorMaximilian Albert <maximilian.albert@gmail.com>2008-09-18 17:48:42 +0000
committercilix42 <cilix42@users.sourceforge.net>2008-09-18 17:48:42 +0000
commit07a2c5b0db916ac9e5dee3bcbafcb12d8e767fa8 (patch)
tree3a4c8c7f4f8de2878adbe5eabaf75460d35b8bcb /src/gradient-context.h
parentNR ==> Geom conversion in sp-canvas (diff)
downloadinkscape-07a2c5b0db916ac9e5dee3bcbafcb12d8e767fa8.tar.gz
inkscape-07a2c5b0db916ac9e5dee3bcbafcb12d8e767fa8.zip
Next roud of NR ==> Geom conversion
(bzr r6839)
Diffstat (limited to 'src/gradient-context.h')
-rw-r--r--src/gradient-context.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gradient-context.h b/src/gradient-context.h
index ac4682636..f4d8c572a 100644
--- a/src/gradient-context.h
+++ b/src/gradient-context.h
@@ -16,7 +16,6 @@
#include <sigc++/sigc++.h>
#include "event-context.h"
-#include "libnr/nr-point.h"
#define SP_TYPE_GRADIENT_CONTEXT (sp_gradient_context_get_type())
#define SP_GRADIENT_CONTEXT(obj) (GTK_CHECK_CAST((obj), SP_TYPE_GRADIENT_CONTEXT, SPGradientContext))
@@ -29,13 +28,13 @@ class SPGradientContextClass;
struct SPGradientContext : public SPEventContext {
- NR::Point origin;
+ Geom::Point origin;
bool cursor_addnode;
bool node_added;
- NR::Point mousepoint_doc; // stores mousepoint when over_line in doc coords
+ Geom::Point mousepoint_doc; // stores mousepoint when over_line in doc coords
Inkscape::MessageContext *_message_context;