diff --git a/Applications/DataExplorer/DataView/GeoTreeView.cpp b/Applications/DataExplorer/DataView/GeoTreeView.cpp index b228cdc69c6c54fa42eefd0a2788dc6b59a3c0ef..11d63a8a120caa18f08ca2b3fed6bce9bcd03268 100644 --- a/Applications/DataExplorer/DataView/GeoTreeView.cpp +++ b/Applications/DataExplorer/DataView/GeoTreeView.cpp @@ -283,9 +283,13 @@ void GeoTreeView::loadFEMConditions() void GeoTreeView::saveFEMConditions() { TreeItem* item = static_cast<GeoTreeModel*>(model())->getItem( - this->selectionModel()->currentIndex()); - QString fileName = QFileDialog::getSaveFileName(NULL, - "Save FEM Conditions as", "", "OpenGeoSys FEM Condition file (*.cnd);; GeoSys Boundary Condition (*.bc);; GeoSys Initial Condition (*.ic);; GeoSys Source Condition (*.st)"); + this->selectionModel()->currentIndex()); + QString fileName = + QFileDialog::getSaveFileName(nullptr, "Save FEM Conditions as", "", + "OpenGeoSys FEM Condition file (*.cnd);; " + "GeoSys Boundary Condition (*.bc);; " + "GeoSys Initial Condition (*.ic);; " + "GeoSys Source Condition (*.st)"); emit saveFEMConditionsRequested(item->data(0).toString(), fileName); } */ diff --git a/BaseLib/TemplateLogogFormatterSuppressedGCC-impl.h b/BaseLib/TemplateLogogFormatterSuppressedGCC-impl.h index 97fc1ca1ffc164492bc4b019d9618f018f88137c..43cb85993cbfa2e50581d88a2acce04e07f444ed 100644 --- a/BaseLib/TemplateLogogFormatterSuppressedGCC-impl.h +++ b/BaseLib/TemplateLogogFormatterSuppressedGCC-impl.h @@ -80,7 +80,7 @@ TemplateLogogFormatterSuppressedGCC<T_SUPPPRESS_TOPIC_FLAG> } if ( target.GetNullTerminatesStrings() ) - m_sMessageBuffer.append( (LOGOG_CHAR)NULL ); + m_sMessageBuffer.append((LOGOG_CHAR)'\0'); return m_sMessageBuffer; } diff --git a/GeoLib/IO/Legacy/OGSIOVer4.cpp b/GeoLib/IO/Legacy/OGSIOVer4.cpp index 8503ced9c15e6df2d0d7226b533ce08bf6355e0a..a78e6c5ba9a02340599ae9a3add84fd87ebe8982 100644 --- a/GeoLib/IO/Legacy/OGSIOVer4.cpp +++ b/GeoLib/IO/Legacy/OGSIOVer4.cpp @@ -163,7 +163,6 @@ std::string readPolyline(std::istream &in, in >> line; if (line.find("$ID") != std::string::npos) // subkeyword found CC in >> line; // read value - // id = strtol(line_string.data(), NULL, 0); //.................................................................... if (line.find("$NAME") != std::string::npos) // subkeyword found { @@ -292,7 +291,6 @@ std::string readSurface(std::istream &in, in >> line; if (line.find("$ID") != std::string::npos) // subkeyword found CC in >> line; // read value - // id = strtol(line_string.data(), NULL, 0); //.................................................................... if (line.find("$NAME") != std::string::npos) // subkeyword found { diff --git a/GeoLib/IO/XmlIO/Qt/XmlGmlInterface.cpp b/GeoLib/IO/XmlIO/Qt/XmlGmlInterface.cpp index a34c86ffd931043f54c5e2a81df3e5e638b407dd..045bb5d208ff0678b7ecb2234043bffec16e033e 100644 --- a/GeoLib/IO/XmlIO/Qt/XmlGmlInterface.cpp +++ b/GeoLib/IO/XmlIO/Qt/XmlGmlInterface.cpp @@ -106,7 +106,7 @@ int XmlGmlInterface::readFile(const QString &fileName) { readPoints(type_node, points.get(), pnt_names.get()); - // if names-map is empty, set it to NULL because it is not needed + // if names-map is empty, set it to nullptr because it is not needed if (pnt_names->empty()) { pnt_names.reset(nullptr); @@ -120,7 +120,7 @@ int XmlGmlInterface::readFile(const QString &fileName) type_node, polylines.get(), *_geo_objs.getPointVec(gliName), _geo_objs.getPointVecObj(gliName)->getIDMap(), ply_names.get()); - // if names-map is empty, set it to NULL because it is not needed + // if names-map is empty, set it to nullptr because it is not needed if (ply_names->empty()) { ply_names.reset(nullptr); @@ -132,7 +132,7 @@ int XmlGmlInterface::readFile(const QString &fileName) type_node, surfaces.get(), *_geo_objs.getPointVec(gliName), _geo_objs.getPointVecObj(gliName)->getIDMap(), sfc_names.get()); - // if names-map is empty, set it to NULL because it is not needed + // if names-map is empty, set it to nullptr because it is not needed if (sfc_names->empty()) { sfc_names.reset(nullptr);