diff options
| author | Krzysztof Kosi??ski <tweenk.pl@gmail.com> | 2011-08-06 13:38:28 +0000 |
|---|---|---|
| committer | Krzysztof KosiĆski <tweenk.pl@gmail.com> | 2011-08-06 13:38:28 +0000 |
| commit | 42c8636a2c5814746c41f1452ffa7df99cf21367 (patch) | |
| tree | 07cfd6d6d3766e252a6edfce0d1c7f9ff67cb1ba /src/display/drawing-text.cpp | |
| parent | Rewrite NRArenaItem hierarchy into C++ (diff) | |
| download | inkscape-42c8636a2c5814746c41f1452ffa7df99cf21367.tar.gz inkscape-42c8636a2c5814746c41f1452ffa7df99cf21367.zip | |
Document things figured out during the rewriting
(bzr r10347.1.22)
Diffstat (limited to 'src/display/drawing-text.cpp')
| -rw-r--r-- | src/display/drawing-text.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/display/drawing-text.cpp b/src/display/drawing-text.cpp index 784888bd7..e03a91b39 100644 --- a/src/display/drawing-text.cpp +++ b/src/display/drawing-text.cpp @@ -102,7 +102,7 @@ DrawingGlyphs::_updateItem(Geom::IntRect const &area, UpdateContext const &ctx, } DrawingItem * -DrawingGlyphs::_pickItem(Geom::Point const &p, double delta) +DrawingGlyphs::_pickItem(Geom::Point const &p, double delta, bool /*sticky*/) { if (!_font || !_bbox) return NULL; @@ -248,7 +248,7 @@ DrawingText::_clipItem(DrawingContext &ct, Geom::IntRect const &area) } DrawingItem * -DrawingText::_pickItem(Geom::Point const &p, double delta) +DrawingText::_pickItem(Geom::Point const &p, double delta, bool /*sticky*/) { DrawingItem *picked = DrawingGroup::_pickItem(p, delta); if (picked) return this; |
