From: Thomas Geymayer Date: Fri, 16 Nov 2012 14:49:43 +0000 (+0100) Subject: Fix for VS bug X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d56ea7e6c408cf6b597cd8f69fa364283f96c82d;p=simgear.git Fix for VS bug --- diff --git a/simgear/nasal/cppbind/Ghost.hxx b/simgear/nasal/cppbind/Ghost.hxx index ddb2c1f5..746be96c 100644 --- a/simgear/nasal/cppbind/Ghost.hxx +++ b/simgear/nasal/cppbind/Ghost.hxx @@ -279,7 +279,7 @@ namespace nasal bases() { BaseGhost* base = BaseGhost::getSingletonPtr(); - base->addDerived( &getTypeFor ); + base->addDerived( &Ghost::getTypeFor ); // Replace any getter that is not available in the current class. // TODO check if this is the correct behavior of function overriding