IOhannes m zmoelnig wrote:
basically you have to replace "error" by "::error" whenever the error occurs. vertex_combine::gem_rightMessCallback() is a static member of the class, so it cannot access the normal member function "error" directly. you can either use "GetMyClass(data)->error()" to use the CPPExtern::error() or use "::error()" to use pd's error().
i haven't yet fixed this, since i usually do not compile the Vertex stuff, so i haven't noticed yet....
now i do have fixed it in the CVS
mfg.sdfg IOhannes