diff --git a/Plugin/Plugin.h b/Plugin/Plugin.h index b77157bbba4139e9a8d5276cf24bdedc5d40b3f9..b2a5f88c5cff10e833a956503528f7cc4291f994 100644 --- a/Plugin/Plugin.h +++ b/Plugin/Plugin.h @@ -115,8 +115,8 @@ public: virtual void receiveNewPhysicalGroup (int dim, int id) = 0;// add the given group to the solver data's virtual void readSolverFile ( const char * ) = 0; // load the solver input file related to the gmsh geo file virtual void writeSolverFile ( const char *) const = 0; // save the solver file - virtual bool GL_enhancePoint ( Vertex *v) {}; // enhance graphics for a giver geo point - virtual bool GL_enhanceLine ( int CurveId , Vertex *v1, Vertex *v2) {}; // enhance graphics for a giver geo line + virtual bool GL_enhancePoint ( Vertex *v) { return false; }; // enhance graphics for a giver geo point + virtual bool GL_enhanceLine ( int CurveId , Vertex *v1, Vertex *v2) { return false; }; // enhance graphics for a giver geo line }; #endif