mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Cotire : Fix name for enum names
This commit is contained in:
parent
907337015f
commit
55c9846aa7
@ -341,13 +341,13 @@ RimGridCrossPlotCurveSet::nameComponents() const
|
||||
{
|
||||
std::map<RimGridCrossPlotCurveSet::NameComponents, QString> componentNames;
|
||||
if (m_nameConfig->addCaseName())
|
||||
componentNames[CASE_NAME] = caseNameString();
|
||||
componentNames[GCP_CASE_NAME] = caseNameString();
|
||||
if (m_nameConfig->addAxisVariables())
|
||||
componentNames[AXIS_VARIABLES] = axisVariableString();
|
||||
componentNames[GCP_AXIS_VARIABLES] = axisVariableString();
|
||||
if (m_nameConfig->addTimestep())
|
||||
componentNames[TIME_STEP] = timeStepString();
|
||||
componentNames[GCP_TIME_STEP] = timeStepString();
|
||||
if (m_nameConfig->addGrouping())
|
||||
componentNames[GROUP_NAME] = groupTitle();
|
||||
componentNames[GCP_GROUP_NAME] = groupTitle();
|
||||
|
||||
return componentNames;
|
||||
}
|
||||
|
@ -76,10 +76,10 @@ public:
|
||||
|
||||
enum NameComponents
|
||||
{
|
||||
CASE_NAME,
|
||||
AXIS_VARIABLES,
|
||||
TIME_STEP,
|
||||
GROUP_NAME
|
||||
GCP_CASE_NAME,
|
||||
GCP_AXIS_VARIABLES,
|
||||
GCP_TIME_STEP,
|
||||
GCP_GROUP_NAME
|
||||
};
|
||||
|
||||
public:
|
||||
|
Loading…
Reference in New Issue
Block a user