summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMenTaLguY <mental@rydia.net>2006-04-29 18:44:26 +0000
committermental <mental@users.sourceforge.net>2006-04-29 18:44:26 +0000
commitfd34c444487e50e7f13a9d1f4fbb28f7f3e98137 (patch)
treee4a6095a1dd3a23b514cc4f2ddb293f7d19f2a7b /src
parentclarify wording, and that these are rules of thumb (diff)
downloadinkscape-fd34c444487e50e7f13a9d1f4fbb28f7f3e98137.tar.gz
inkscape-fd34c444487e50e7f13a9d1f4fbb28f7f3e98137.zip
fix over-qualified name
(bzr r626)
Diffstat (limited to 'src')
-rw-r--r--src/gc-anchored.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gc-anchored.cpp b/src/gc-anchored.cpp
index 285efd69d..3829e54dd 100644
--- a/src/gc-anchored.cpp
+++ b/src/gc-anchored.cpp
@@ -24,7 +24,7 @@ class AnchorEvent : public Debug::Event {
public:
enum Type { ANCHOR, RELEASE };
- AnchorEvent(GC::Anchored const *object, Type type)
+ AnchorEvent(Anchored const *object, Type type)
: _base(Util::format("%p", Core::base(const_cast<Anchored *>(object)))),
_object(Util::format("%p", object)),
_class_name(Util::share_static_string(typeid(*object).name())),