diff options
| author | Bob Jamison <ishmalius@gmail.com> | 2008-06-12 20:04:38 +0000 |
|---|---|---|
| committer | ishmal <ishmal@users.sourceforge.net> | 2008-06-12 20:04:38 +0000 |
| commit | 1d230f167c3f3162b7153d684a7d450d429c9518 (patch) | |
| tree | b52c6aa51afbcfee2023e4c82eb2228b885f0e30 | |
| parent | LPE Enveloppe: return input path when xx and yy are both false (diff) | |
| download | inkscape-1d230f167c3f3162b7153d684a7d450d429c9518.tar.gz inkscape-1d230f167c3f3162b7153d684a7d450d429c9518.zip | |
Missed two * -> Ptr conversions
(bzr r5912)
| -rw-r--r-- | src/dom/svgtypes.h | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/src/dom/svgtypes.h b/src/dom/svgtypes.h index 674add792..9b3d1caf6 100644 --- a/src/dom/svgtypes.h +++ b/src/dom/svgtypes.h @@ -78,7 +78,9 @@ typedef dom::NodeList NodeList; class SVGElement; +typedef Ptr<SVGElement> SVGElementPtr; class SVGUseElement; +typedef Ptr<SVGUseElement> SVGUseElementPtr; class SVGAnimatedPreserveAspectRatio; @@ -3104,18 +3106,18 @@ public: /** * */ - virtual SVGElement *getNearestViewportElement() + virtual SVGElementPtr getNearestViewportElement() { - SVGElement *result = NULL; + SVGElementPtr result; return result; } /** * */ - virtual SVGElement *getFarthestViewportElement() + virtual SVGElementPtr getFarthestViewportElement() { - SVGElement *result = NULL; + SVGElementPtr result; return result; } @@ -3780,7 +3782,7 @@ public: /** * */ - virtual SVGElement *getViewTarget() + virtual SVGElementPtr getViewTarget() { return viewTarget; } /** @@ -3849,7 +3851,7 @@ public: protected: - SVGElement *viewTarget; + SVGElementPtr viewTarget; SVGTransformList transform; }; @@ -6707,13 +6709,13 @@ public: /** * */ - virtual SVGElement *getCorrespondingElement() + virtual SVGElementPtr getCorrespondingElement() { return correspondingElement; } /** * */ - virtual SVGUseElement *getCorrespondingUseElement() + virtual SVGUseElementPtr getCorrespondingUseElement() { return correspondingUseElement; } /** @@ -6793,8 +6795,8 @@ public: protected: - SVGElement *correspondingElement; - SVGUseElement *correspondingUseElement; + SVGElementPtr correspondingElement; + SVGUseElementPtr correspondingUseElement; }; |
