]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Remove unnecessary fields.
authormkr <mkr@opencascade.com>
Thu, 8 Nov 2007 11:24:42 +0000 (11:24 +0000)
committermkr <mkr@opencascade.com>
Thu, 8 Nov 2007 11:24:42 +0000 (11:24 +0000)
src/QxGraph/QxGraph_ViewManager.cxx
src/QxGraph/QxGraph_ViewManager.h

index 1480b202c5476f45116c54b61586a13ea7a64d58..3709afc7e5d668511245feac9d442e74070aba7a 100644 (file)
@@ -18,8 +18,6 @@
 //
 #include "QxGraph_ViewManager.h"
 
-int QxGraph_ViewManager::myMaxId = 0;
-
 /*!
   Constructor
 */
@@ -28,7 +26,6 @@ QxGraph_ViewManager::QxGraph_ViewManager( SUIT_Study* theStudy,
                                          SUIT_ViewModel* theViewModel )
   : SUIT_ViewManager( theStudy, theDesktop, theViewModel )
 {
-  myId = ++myMaxId;
 }
 
 /*!
index db3ed539eb1b8199a2d3e8eb1e3f4a8bc6572fa0..2e45cc3a641f2a06cfdf4efc1630f94c9c827773 100644 (file)
@@ -39,10 +39,6 @@ public:
 protected:
   void              setViewName(SUIT_ViewWindow* theView);
 
-private:
-  static int        myMaxId;
-  int               myId;
-
 };
 
 #endif