From 77093a9b659d4d7c65484d49ada132d8cd94bd95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Fri, 31 May 2013 17:21:27 +0200 Subject: [PATCH] SceneGraph: fixed copypaste error. --- src/SceneGraph/AbstractTranslationRotation3D.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SceneGraph/AbstractTranslationRotation3D.h b/src/SceneGraph/AbstractTranslationRotation3D.h index c3853efa1..fd132c250 100644 --- a/src/SceneGraph/AbstractTranslationRotation3D.h +++ b/src/SceneGraph/AbstractTranslationRotation3D.h @@ -120,7 +120,7 @@ class AbstractTranslationRotation3D: public AbstractTransformation<3, T> { /* Overloads to remove WTF-factor from method chaining order */ #ifndef DOXYGEN_GENERATING_OUTPUT AbstractTranslationRotation3D* resetTransformation() { - AbstractTransformation<2, T>::resetTransformation(); + AbstractTransformation<3, T>::resetTransformation(); return this; } #endif