From: mpv Date: Wed, 8 Jun 2005 04:26:43 +0000 (+0000) Subject: Porting to Mandrake 10.1 and new products: X-Git-Tag: T2_2_4a~7 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=ec6c86dbea1eeca3f6f9371e504a031a2984704e;p=modules%2Fkernel.git Porting to Mandrake 10.1 and new products: new compiler gcc 3.4.1 compatibility --- diff --git a/src/MEDWrapper/Base/MED_Common.hxx b/src/MEDWrapper/Base/MED_Common.hxx index a4d5af9f3..279489642 100644 --- a/src/MEDWrapper/Base/MED_Common.hxx +++ b/src/MEDWrapper/Base/MED_Common.hxx @@ -78,12 +78,12 @@ namespace MED{ operator const T& () const { - return *get(); + return *(this->get()); } operator T& () { - return *get(); + return *(this->get()); } }; @@ -143,7 +143,7 @@ namespace MED{ typename TSupperClass::TValue& operator[](size_t theId) { - return myContainer[GetID(theId)]; + return myContainer[this->GetID(theId)]; } };