From 0c602cfa46d416784832bcfda2cec9d4cb59b4cd Mon Sep 17 00:00:00 2001
From: rinkk <karsten.rink@ufz.de>
Date: Thu, 21 Jan 2016 11:49:01 +0100
Subject: [PATCH] [A/DE] Reuse already fetched model variable.

---
 Applications/DataExplorer/DataView/MshView.cpp | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/Applications/DataExplorer/DataView/MshView.cpp b/Applications/DataExplorer/DataView/MshView.cpp
index 9f439ae18e5..8110deaeb3f 100644
--- a/Applications/DataExplorer/DataView/MshView.cpp
+++ b/Applications/DataExplorer/DataView/MshView.cpp
@@ -165,8 +165,7 @@ void MshView::openMeshEditDialog()
 {
 	MshModel const*const model = static_cast<MshModel*>(this->model());
 	QModelIndex const index = this->selectionModel()->currentIndex();
-	const MeshLib::Mesh* mesh =
-	        static_cast<MshModel*>(this->model())->getMesh(index);
+	MeshLib::Mesh const*const mesh = model->getMesh(index);
 
 	MeshLayerEditDialog meshLayerEdit(mesh);
 	connect(&meshLayerEdit, SIGNAL(mshEditFinished(MeshLib::Mesh*)),
@@ -178,7 +177,7 @@ void MshView::openValuesEditDialog()
 {
 	MshModel const*const model = static_cast<MshModel*>(this->model());
 	QModelIndex const index = this->selectionModel()->currentIndex();
-	MeshLib::Mesh* mesh = const_cast<MeshLib::Mesh*>(static_cast<MshModel*>(this->model())->getMesh(index));
+	MeshLib::Mesh* mesh = const_cast<MeshLib::Mesh*>(model->getMesh(index));
 
 	MeshValueEditDialog valueEdit(mesh);
 	connect(&valueEdit, SIGNAL(valueEditFinished(MeshLib::Mesh*)),
-- 
GitLab