From 9912bc599715104a081caa22eae77a633b8c60be Mon Sep 17 00:00:00 2001 From: mpv Date: Tue, 26 Mar 2019 17:27:17 +0300 Subject: [PATCH] Too long line fix --- src/ExchangePlugin/ExchangePlugin_ExportFeature.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ExchangePlugin/ExchangePlugin_ExportFeature.cpp b/src/ExchangePlugin/ExchangePlugin_ExportFeature.cpp index a8ecc73c1..a3e92eb67 100644 --- a/src/ExchangePlugin/ExchangePlugin_ExportFeature.cpp +++ b/src/ExchangePlugin/ExchangePlugin_ExportFeature.cpp @@ -265,7 +265,8 @@ void ExchangePlugin_ExportFeature::exportXAO(const std::string& theFileName) if (aIsSelection) { // a mode for export to geom result by result for(int a = 0; a < aSelection->size(); a++) { AttributeSelectionPtr anAttr = aSelection->value(a); - ResultBodyPtr aBodyContext = std::dynamic_pointer_cast(anAttr->context()); + ResultBodyPtr aBodyContext = + std::dynamic_pointer_cast(anAttr->context()); if (aBodyContext.get() && !aBodyContext->isDisabled() && aBodyContext->shape().get()) { aResults.push_back(aBodyContext); GeomShapePtr aShape = anAttr->value(); -- 2.39.2