From: Christophe Bourcier Date: Tue, 5 Dec 2017 14:33:08 +0000 (+0100) Subject: Fix coding style. Lines should be <= 100 characters long. X-Git-Tag: V_2.10.0RC~93^2~7 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=917644bb8c145a3f87c4716351a98fd89c71e636;p=modules%2Fshaper.git Fix coding style. Lines should be <= 100 characters long. --- diff --git a/src/ExchangeAPI/ExchangeAPI_Export.cpp b/src/ExchangeAPI/ExchangeAPI_Export.cpp index 71666dca3..7bbb3ac9b 100644 --- a/src/ExchangeAPI/ExchangeAPI_Export.cpp +++ b/src/ExchangeAPI/ExchangeAPI_Export.cpp @@ -84,12 +84,14 @@ void ExchangeAPI_Export::dump(ModelHighAPI_Dumper& theDumper) const std::string exportType = aBase->string(ExchangePlugin_ExportFeature::EXPORT_TYPE_ID())->value(); if (exportType == "XAO") { - std::string tmpXAOFile = aBase->string(ExchangePlugin_ExportFeature::XAO_FILE_PATH_ID())->value(); + std::string tmpXAOFile = + aBase->string(ExchangePlugin_ExportFeature::XAO_FILE_PATH_ID())->value(); theDumper << "exportToXAO(" << aDocName << ", '" << tmpXAOFile << "'" ; std::string theAuthor = aBase->string(ExchangePlugin_ExportFeature::XAO_AUTHOR_ID())->value(); if (not theAuthor.empty()) theDumper << ", '" << theAuthor << "'"; - std::string theGeometryName = aBase->string(ExchangePlugin_ExportFeature::XAO_GEOMETRY_NAME_ID())->value(); + std::string theGeometryName = + aBase->string(ExchangePlugin_ExportFeature::XAO_GEOMETRY_NAME_ID())->value(); if (not theGeometryName.empty()) theDumper << ", '" << theGeometryName << "'"; theDumper << ")" << std::endl; @@ -98,7 +100,8 @@ void ExchangeAPI_Export::dump(ModelHighAPI_Dumper& theDumper) const theDumper << "exportToFile(" << aDocName << ", " << aBase->string(ExchangePlugin_ExportFeature::FILE_PATH_ID()) << ", " << aBase->selectionList(ExchangePlugin_ExportFeature::SELECTION_LIST_ID()) ; - std::string theFileFormat = aBase->string(ExchangePlugin_ExportFeature::FILE_FORMAT_ID())->value(); + std::string theFileFormat = + aBase->string(ExchangePlugin_ExportFeature::FILE_FORMAT_ID())->value(); if (not theFileFormat.empty()) theDumper << ", '" << theFileFormat << "'"; theDumper << ")" << std::endl;