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/common-context.cpp | |
| 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/common-context.cpp')
| -rw-r--r-- | src/common-context.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/common-context.cpp b/src/common-context.cpp index d20b43b12..eab50b478 100644 --- a/src/common-context.cpp +++ b/src/common-context.cpp @@ -82,13 +82,13 @@ static void sp_common_context_init(SPCommonContext *ctx) ctx->repr = 0; /* Common values */ - ctx->cur = NR::Point(0,0); - ctx->last = NR::Point(0,0); - ctx->vel = NR::Point(0,0); + ctx->cur = Geom::Point(0,0); + ctx->last = Geom::Point(0,0); + ctx->vel = Geom::Point(0,0); ctx->vel_max = 0; - ctx->acc = NR::Point(0,0); - ctx->ang = NR::Point(0,0); - ctx->del = NR::Point(0,0); + ctx->acc = Geom::Point(0,0); + ctx->ang = Geom::Point(0,0); + ctx->del = Geom::Point(0,0); /* attributes */ ctx->dragging = FALSE; |
