]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
Remove unused varibables
authorapo <apo@opencascade.com>
Thu, 13 Jan 2005 06:23:11 +0000 (06:23 +0000)
committerapo <apo@opencascade.com>
Thu, 13 Jan 2005 06:23:11 +0000 (06:23 +0000)
src/OBJECT/VISU_Actor.h
src/VISUGUI/VisuGUI.cxx
src/VISU_I/VISU_CutLines_i.cc
src/VISU_I/VISU_CutPlanes_i.cc
src/VISU_I/VISU_DeformedShape_i.cc
src/VISU_I/VISU_IsoSurfaces_i.cc
src/VISU_I/VISU_ScalarMap_i.cc
src/VISU_I/VISU_TimeAnimation.cxx
src/VISU_I/VISU_Vectors_i.cc
src/VISU_I/VISU_ViewManager_i.cc

index eb401ed8c0110dfca32bfdf99261e5736b5a3354..4000d31865620830e3568cea841ad14fe8bf7840 100644 (file)
@@ -91,8 +91,6 @@ class VTKOCC_EXPORT VISU_Actor : public SALOME_Actor {
   virtual int GetNodeObjId(int theVtkID);
   virtual int GetElemObjId(int theVtkID);
 
-  std::string myFieldName;
-
  protected:
   VISU_Actor();
  
index ee34ad50fa25d6324e32c722229ac124a8b979c6..0b726abe39fa7637979cbfa029467f155e0dd093 100644 (file)
@@ -143,10 +143,8 @@ using namespace std;
 
 #ifdef _DEBUG_
 static int MYDEBUG = 0;
-static int MYDEBUGWITHFILES = 0;
 #else
 static int MYDEBUG = 0;
-static int MYDEBUGWITHFILES = 0;
 #endif
 
 class CustomItem : public QCustomMenuItem
@@ -419,7 +417,6 @@ bool VisuGUI::OnGUIEvent(int theCommandID,  QAD_Desktop* parent)
   try{
     QString VisuInputDir = getVisuInputDir();
     QString VisuOutputDir = getVisuOutputDir();
-    vtkRenderer *theRenderer = GetRenderer();
     
     SALOMEDS::Study_var aStudy = GetActiveStudy()->getStudyDocument(); //Document OCAF de l'etude active
     SALOMEDS::StudyBuilder_var aStudyBuilder = aStudy->NewBuilder();
@@ -640,7 +637,6 @@ bool VisuGUI::OnGUIEvent(int theCommandID,  QAD_Desktop* parent)
     case 54:
       {
        QMenuData* pp;
-       QMenuItem* item = parent->menuBar()->findItem(theCommandID,&pp);
        bool check = !pp->isItemChecked(theCommandID);
        pp->setItemChecked(theCommandID,check);
        switch(theCommandID){
@@ -2800,7 +2796,6 @@ int GetNbChildren( SALOMEDS::SObject_var SO, bool refToo )
 bool VisuGUI::CustomPopup(QAD_Desktop* parent, QPopupMenu* thePopup, const QString & theContext,
                          const QString & theParent, const QString & theObject)
 {
-  int isViewer = (theParent.compare("ObjectBrowser") != 0), initId = isViewer? 800: 900;
   QAD_ResourceMgr* rmgr = parent->createResourceManager();
 
   bool aIsLocked = isStudyLocked( GetActiveStudy()->getStudyDocument() );
@@ -3901,7 +3896,7 @@ void VisuGUI::ExportToFile(){
       QAD_Application::getDesktop()->putInfo( "Exporting To File " + aFile + "..." );
       aDir = QAD_Tools::getDirFromPath(aFile);
       QAD_CONFIG->addSetting("Visu:OutputDir",aDir);
-      if(VISU::Result_i* aResult = dynamic_cast<VISU::Result_i*>(aBase)){
+      if(dynamic_cast<VISU::Result_i*>(aBase)){
        try{
          //APO - aResult->GetInput()->ToFile(aFile.latin1());
          QAD_Application::getDesktop()->putInfo(aFile+" exported.");
@@ -3972,7 +3967,6 @@ VISU_Actor* VisuGUI::UpdateViewer(VISU::Prs3d_i* thePrs, bool theDispOnly){
   vtkActor *anActor;
   VISU_Actor* anVISUActor = NULL;
   VISU_Actor* aResActor = NULL;
-  VISU::Prs3d_i* aSrcAddr = thePrs;
   for(anActColl->InitTraversal(); (anActor = anActColl->GetNextActor()) != NULL; ){
     if(!SALOME_Actor::SafeDownCast(anActor))
       continue;
index 4021956fd18dfe51354b573d6aaf9e719f6d69e5..f5185524ee0eb80bda37d68ef328f3feca38830c 100644 (file)
@@ -38,10 +38,8 @@ using namespace std;
 
 #ifdef _DEBUG_
 static int MYDEBUG = 0;
-static int MYDEBUGWITHFILES = 0;
 #else
 static int MYDEBUG = 0;
-static int MYDEBUGWITHFILES = 0;
 #endif
 
 int VISU::CutLines_i::IsPossible(Result_i* theResult, const char* theMeshName, VISU::Entity theEntity, 
@@ -68,7 +66,6 @@ VISU::CutLines_i::CutLines_i(Result_i* theResult, bool theAddToStudy, SALOMEDS::
 
 
 void VISU::CutLines_i::SameAs(const CutLines_i* theOrigin){
-  CutLines_i* aCutLines = const_cast<CutLines_i*>(theOrigin);
   VISU::ScalarMap_i::SameAs(theOrigin);
 }
 
@@ -251,11 +248,7 @@ void VISU::CutLines_i::BuildTableOfReal(SALOMEDS::SObject_ptr theSObject){
     typedef map<int,TXYMap> TXYMapCont;
     typedef map<long,long> TLineIdCont;
     
-    const VISU::TField::TValField& aValField = myField->myValField;
-    const VISU::TField::TValForTime& aValForTime = aValField.find((int)myIteration)->second;
-    const VISU::TField::TTime& aTime = aValForTime.myTime;
     QString aTitle;
-    //aTitle.sprintf("%s %s",myTitle.c_str(),aTime.second.c_str());
     aTitle.sprintf("%s",myTitle.c_str());
     aTitle = aTitle.simplifyWhiteSpace();
     aTableOfReal->SetTitle(aTitle.latin1());
index cfa8925261eff7a77300849859fa79eb816d3c05..a18f32f3cf0402fd4b1f9fa48a98d4e10bbf0145 100644 (file)
@@ -34,10 +34,8 @@ using namespace std;
 
 #ifdef _DEBUG_
 static int MYDEBUG = 0;
-static int MYDEBUGWITHFILES = 0;
 #else
 static int MYDEBUG = 0;
-static int MYDEBUGWITHFILES = 0;
 #endif
 
 int VISU::CutPlanes_i::IsPossible(Result_i* theResult, const char* theMeshName, VISU::Entity theEntity, 
@@ -65,7 +63,6 @@ VISU::CutPlanes_i::CutPlanes_i(Result_i* theResult, bool theAddToStudy, SALOMEDS
 
 
 void VISU::CutPlanes_i::SameAs(const CutPlanes_i* theOrigin){
-  CutPlanes_i* aCutPlanes = const_cast<CutPlanes_i*>(theOrigin);
   VISU::ScalarMap_i::SameAs(theOrigin);
 }
 
@@ -98,8 +95,6 @@ VISU::Storable* VISU::CutPlanes_i::Restore(const Storable::TRestoringMap& theMap
 void VISU::CutPlanes_i::ToStream(std::ostringstream& theStr){
   ScalarMap_i::ToStream(theStr);
 
-  int aNbPlanes = GetNbPlanes();
-
   Storable::DataToStream( theStr, "myNbPlanes", int(GetNbPlanes()));
   Storable::DataToStream( theStr, "myDisplacement", GetDisplacement());
   Storable::DataToStream( theStr, "myBasePlane", int(GetOrientationType()));
index 8333217fd7fddded443a1e955f752017e586718c..fd3eb6c66333c8ea8f5d99b3d2a75f16062362f3 100644 (file)
@@ -36,10 +36,8 @@ using namespace std;
 
 #ifdef _DEBUG_
 static int MYDEBUG = 0;
-static int MYDEBUGWITHFILES = 0;
 #else
 static int MYDEBUG = 0;
-static int MYDEBUGWITHFILES = 0;
 #endif
 
 int VISU::DeformedShape_i::IsPossible(Result_i* theResult, const char* theMeshName, VISU::Entity theEntity, 
index 4d51d172e79268ac15379d6705f0ac8420e40ffc..4a1527033848397ffeb1e0460e09902f7679acb1 100644 (file)
@@ -34,10 +34,8 @@ using namespace std;
 
 #ifdef _DEBUG_
 static int MYDEBUG = 0;
-static int MYDEBUGWITHFILES = 0;
 #else
 static int MYDEBUG = 0;
-static int MYDEBUGWITHFILES = 0;
 #endif
 
 int VISU::IsoSurfaces_i::IsPossible(Result_i* theResult, const char* theMeshName, VISU::Entity theEntity, 
@@ -64,7 +62,6 @@ VISU::IsoSurfaces_i::IsoSurfaces_i(Result_i* theResult, bool theAddToStudy, SALO
 
 
 void VISU::IsoSurfaces_i::SameAs(const IsoSurfaces_i* theOrigin) {
-  IsoSurfaces_i* aIsoSurfaces = const_cast<IsoSurfaces_i*>(theOrigin);
   VISU::ScalarMap_i::SameAs(theOrigin);
 }
 
index 96beba4d0b59643604d023c0545083bd44ec3832..1bb7766d281c34848b634525c09f7931de3fd513 100644 (file)
@@ -38,10 +38,8 @@ using namespace std;
 
 #ifdef _DEBUG_
 static int MYDEBUG = 0;
-static int MYDEBUGWITHFILES = 0;
 #else
 static int MYDEBUG = 0;
-static int MYDEBUGWITHFILES = 0;
 #endif
 
 static int INCMEMORY = 4;
@@ -201,7 +199,6 @@ VISU::Storable* VISU::ScalarMap_i::Create(const char* theMeshName, VISU::Entity
   myIsFixedRange = (aFixRange.compare("true") == 0);
 
   if(myIsFixedRange){
-    float aScalarRange[2];
     QString aRangeMin = QAD_CONFIG->getSetting("Visu:SBMinimumValue");
     float aMin = (aRangeMin.isEmpty())? 0 : aRangeMin.toFloat();
     QString aRangeMax = QAD_CONFIG->getSetting("Visu:SBMaximumValue");
@@ -502,7 +499,6 @@ VISU_Actor* VISU::ScalarMap_i::CreateActor(const Handle(SALOME_InteractiveObject
     VISU::Prs3d_i::CreateActor(anActor,theIO);
     anActor->SetBarVisibility(true);
     anActor->SetRepresentation(2);
-    anActor->myFieldName = myFieldName;
     UpdateActor(anActor);
   }catch(...) {
     anActor->Delete();
index e1245e97bc75efe6beab0513edf7ca228c685e8c..2f16e023c1c74847cdb20baca650d1a8084c6c8b 100644 (file)
@@ -29,8 +29,6 @@
 
 using namespace std;
 
-//QWaitCondition myCondition;
-static int MYDELAY = 1;
 
 //************************************************************************
 VISU_TimeAnimation::VISU_TimeAnimation(SALOMEDS::Study_ptr theStudy, VISU::View3D_ptr theView3D) {
@@ -247,7 +245,6 @@ CORBA::Boolean VISU_TimeAnimation::generateFrames() {
   bool aNoError = true;
 
   clearView();
-  vtkRenderer* aRen = myView->getRenderer();
 
   for (int i = 0; i < getNbFields(); i++) {
     FieldData& aData = myFieldsLst[i];
index b7ac3c0ae07ecf149be5c4fb65ec6786467969b6..ff44a6c17973a13dd1fb7a0f882e2fecbb122376 100644 (file)
@@ -34,10 +34,8 @@ using namespace std;
 
 #ifdef _DEBUG_
 static int MYDEBUG = 0;
-static int MYDEBUGWITHFILES = 0;
 #else
 static int MYDEBUG = 0;
-static int MYDEBUGWITHFILES = 0;
 #endif
 
 static int INCMEMORY = 4+12;
@@ -168,7 +166,6 @@ VISU_Actor* VISU::Vectors_i::CreateActor(const Handle(SALOME_InteractiveObject)&
   try{
     VISU::Prs3d_i::CreateActor(anActor,theIO);
     anActor->SetBarVisibility(true);
-    anActor->myFieldName = myFieldName;
     anActor->GetProperty()->SetColor(myColor.R,myColor.G,myColor.B);
     anActor->GetProperty()->SetLineWidth(GetLineWidth());
     UpdateActor(anActor);
index f2f34ed05bcb57cfde4b251891f951936f74a85b..6639b6b6476c9a012c6fef0fb2836bd934826440 100644 (file)
@@ -1607,7 +1607,6 @@ namespace VISU{
 
 
   VISU_Actor* GetActor(VISU::Prs3d_i* thePrs3d, VTKViewer_ViewFrame* theVTKFrame){
-    vtkActor *anActor;
     vtkActorCollection *anActColl = theVTKFrame->getRenderer()->GetActors();
     anActColl->InitTraversal();
     while(vtkActor *anActor = anActColl->GetNextActor())