]> SALOME platform Git repositories - modules/paravis.git/commitdiff
Salome HOME
Suppress compiler warning.
authorrnv <rnv@opencascade.com>
Sat, 20 Feb 2016 11:35:00 +0000 (14:35 +0300)
committerrnv <rnv@opencascade.com>
Sat, 20 Feb 2016 11:35:00 +0000 (14:35 +0300)
src/PVGUI/PVGUI_DataModel.cxx
src/Plugins/ArrayRenamer/pqArraysEditorPropertyWidget.cxx
src/Plugins/JSONReader/ParaViewPlugin/vtkJSONReader.cxx
src/Plugins/JSONReader/ParaViewPlugin/vtkJSONReader.h
src/Plugins/MEDReader/IO/MEDFileFieldRepresentationTree.cxx

index 7917899be849bacb2a38f148a10b8a57d2cf992f..1473313fc3ab9b5b16adbf2aeb5f00879c72cad6 100644 (file)
@@ -349,7 +349,7 @@ bool PVGUI_DataModel::save( QStringList& theListOfFiles)
         case 1: // Save referenced files only if this is the builtin server
           aServer = pqApplicationCore::instance()->getActiveServer();
           if (aServer)
-            isBuiltIn != aServer->isRemote();
+            isBuiltIn = !aServer->isRemote();
           if(isBuiltIn)
             {
               createAndCheckRestoreFlag(aTmpDir, theListOfFiles, unused);
index 34db037681c3205a9e911a89b9507addb9b0c886..b0dd5d528ea5695fe83d416ff5cc80b2882cc034 100644 (file)
@@ -181,6 +181,7 @@ public:
       emit dataChanged( index( 1, min ) , index( 1, max ) );
       return true;
     }
+    return Superclass::setData(idx,value,role);
   }
 
   //------------------------------------------------------------------
@@ -357,6 +358,7 @@ public:
        return true;
       }
     }
+    return Superclass::setData(idx,value,role);
   }
 
   //------------------------------------------------------------------
index 0d450c365e9b05a9b2aba7de3e403472285f2fca..70e84ad0dac03b160bcbd6473359ecd0f60f28e7 100644 (file)
@@ -156,7 +156,7 @@ int vtkJSONReader::RequestData(vtkInformation*,
     return 0;
 
   try {
-    return this->Parse(root, output_table);
+    this->Parse(root, output_table);
     return 1;
   } 
   catch(vtkJSONException e)  {
@@ -213,7 +213,7 @@ int vtkJSONReader::CanParseFile(const char *fname, Json::Value &root)
 }
 
 //---------------------------------------------------
-int vtkJSONReader::Parse(Json::Value& root, vtkTable *table) {
+void vtkJSONReader::Parse(Json::Value& root, vtkTable *table) {
   bool hasShortNames = false;
   bool hasUnits = false;
   Container container;
index 66badcfdaaa7b4b8fa755d42e27eaf7d12bd5af0..2a75aeeecd691077dde37d3b6bb5de3d1795b5e5 100644 (file)
@@ -55,9 +55,11 @@ public:
   virtual int RequestData(vtkInformation*, 
                          vtkInformationVector**,
                          vtkInformationVector*);
+
+protected:
   // Decription:
   // Parse the Json Value corresponding to the root data from the file
-  virtual int Parse(Json::Value& root, vtkTable *theTable);
+  virtual void Parse(Json::Value& root, vtkTable *theTable);
 
   // Decription:
   // Verify if file exists and can be read by the parser
index 0ad9586bb879c7bc35d90dd75b9363cca1efeb31..d5f991024dbbc236977e25b7ebc6709cea4bb606 100644 (file)
@@ -177,6 +177,7 @@ vtkIdTypeArray *ELGACmp::createNew(const MEDCoupling::MEDFileFieldGlobsReal *glo
   _loc_names=locNames;
   _elgas=elgas;
   _defs.push_back(defs);
+  return elga;
 }
 
 void ELGACmp::appendELGAIfAny(vtkDataSet *ds) const