Porting to Mandrake 10.1 and new products:

new compiler gcc 3.4.1
This commit is contained in:
mpv 2005-06-08 05:08:53 +00:00
parent 7c884f133b
commit a8de1d120e
2 changed files with 3 additions and 3 deletions

View File

@ -50,7 +50,7 @@ public:
return *this;
}
TVTKSmartPtr& operator=(T* r){ vtkSmartPointer<T>::operator=(r); return *this;}
T* Get() const { return GetPointer();}
T* Get() const { return this->GetPointer();}
};

View File

@ -37,7 +37,7 @@
#include "SALOME_GenericObj_i.hh"
class SMESH_Mesh_i;
class ::SMESH_Group;
class SMESH_Group;
class SMESHDS_GroupBase;
// ===========
@ -70,7 +70,7 @@ class SMESH_GroupBase_i:
// Internal C++ interface
int GetLocalID() const { return myLocalID; }
SMESH_Mesh_i* GetMeshServant() const { return myMeshServant; }
::SMESH_Group* GetSmeshGroup() const;
SMESH_Group* GetSmeshGroup() const;
SMESHDS_GroupBase* GetGroupDS() const;
private: