Skip to content
Snippets Groups Projects
Commit 59e6ca80 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

local var names

parent 70d153c9
No related branches found
No related tags found
1 merge request!2381rm class and source pair ProjectionsSet
......@@ -173,12 +173,12 @@ void ProjectionsPlot::updateProjectionsData()
void ProjectionsPlot::updateProjections()
{
ASSERT(m_data_item);
auto* container_item = m_data_item->projectionsSet();
if (!container_item)
auto* all_prjns = m_data_item->projectionsSet();
if (!all_prjns)
return;
const auto projn_items = container_item->projectionsOfType(m_orientation);
for (const auto* projItem : projn_items)
setGraphFromItem(projItem);
const auto oriented_prjns = all_prjns->projectionsOfType(m_orientation);
for (const auto* prjn : oriented_prjns)
setGraphFromItem(prjn);
replot();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment