From: mkr Date: Thu, 8 Nov 2007 11:24:42 +0000 (+0000) Subject: Remove unnecessary fields. X-Git-Tag: V4_1_0rc2~10 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=5a9bf6c9c9f99589dea6a54a390a3940991eb62d;p=modules%2Fgui.git Remove unnecessary fields. --- diff --git a/src/QxGraph/QxGraph_ViewManager.cxx b/src/QxGraph/QxGraph_ViewManager.cxx index 1480b202c..3709afc7e 100644 --- a/src/QxGraph/QxGraph_ViewManager.cxx +++ b/src/QxGraph/QxGraph_ViewManager.cxx @@ -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; } /*! diff --git a/src/QxGraph/QxGraph_ViewManager.h b/src/QxGraph/QxGraph_ViewManager.h index db3ed539e..2e45cc3a6 100644 --- a/src/QxGraph/QxGraph_ViewManager.h +++ b/src/QxGraph/QxGraph_ViewManager.h @@ -39,10 +39,6 @@ public: protected: void setViewName(SUIT_ViewWindow* theView); -private: - static int myMaxId; - int myId; - }; #endif