diff options
| author | Krzysztof Kosi??ski <tweenk.pl@gmail.com> | 2011-08-06 13:45:04 +0000 |
|---|---|---|
| committer | Krzysztof KosiĆski <tweenk.pl@gmail.com> | 2011-08-06 13:45:04 +0000 |
| commit | 456dddb2670686427c60497702e86648635ce42e (patch) | |
| tree | 2a9f168da4a873d5a3fd991747824db3770746db /src/display/drawing-text.cpp | |
| parent | Plug a giant gaping memory leak in Gaussian blur filter (diff) | |
| download | inkscape-456dddb2670686427c60497702e86648635ce42e.tar.gz inkscape-456dddb2670686427c60497702e86648635ce42e.zip | |
Fix compilation (oops).
(bzr r10347.1.24)
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 e03a91b39..5fc732779 100644 --- a/src/display/drawing-text.cpp +++ b/src/display/drawing-text.cpp @@ -248,9 +248,9 @@ DrawingText::_clipItem(DrawingContext &ct, Geom::IntRect const &area) } DrawingItem * -DrawingText::_pickItem(Geom::Point const &p, double delta, bool /*sticky*/) +DrawingText::_pickItem(Geom::Point const &p, double delta, bool sticky) { - DrawingItem *picked = DrawingGroup::_pickItem(p, delta); + DrawingItem *picked = DrawingGroup::_pickItem(p, delta, sticky); if (picked) return this; return NULL; } |
