(#660) Use Intersection to be aligned with concept naming in other tools

This commit is contained in:
Magne Sjaastad
2015-11-23 09:07:35 +01:00
parent 4971304bf9
commit dc1a66d2cc
6 changed files with 12 additions and 13 deletions

View File

@@ -59,7 +59,7 @@ void RicAppendCrossSectionFeature::onActionTriggered(bool isChecked)
void RicAppendCrossSectionFeature::setupActionLook(QAction* actionToSetup)
{
// actionToSetup->setIcon(QIcon(":/CellFilter_Values.png"));
actionToSetup->setText("New Cross Section");
actionToSetup->setText("New Intersection");
}
//--------------------------------------------------------------------------------------------------
@@ -83,7 +83,7 @@ RicAppendCrossSectionFeatureCmd::~RicAppendCrossSectionFeatureCmd()
//--------------------------------------------------------------------------------------------------
QString RicAppendCrossSectionFeatureCmd::name()
{
return "New Cross Section";
return "New Intersection";
}
//--------------------------------------------------------------------------------------------------
@@ -94,7 +94,7 @@ void RicAppendCrossSectionFeatureCmd::redo()
CVF_ASSERT(m_crossSectionCollection);
RimCrossSection* crossSection = new RimCrossSection();
crossSection->name = QString("Cross Section");
crossSection->name = QString("Intersection");
m_crossSectionCollection->appendCrossSection(crossSection);
}

View File

@@ -66,7 +66,7 @@ void RicNewSimWellCrossSectionFeature::onActionTriggered(bool isChecked)
void RicNewSimWellCrossSectionFeature::setupActionLook(QAction* actionToSetup)
{
// actionToSetup->setIcon(QIcon(":/CellFilter_Values.png"));
actionToSetup->setText("New Cross Section");
actionToSetup->setText("New Intersection");
}
//--------------------------------------------------------------------------------------------------
@@ -91,7 +91,7 @@ RicNewSimWellCrossSectionCmd::~RicNewSimWellCrossSectionCmd()
//--------------------------------------------------------------------------------------------------
QString RicNewSimWellCrossSectionCmd::name()
{
return "Create Cross Section From Well";
return "Create Intersection From Well";
}
//--------------------------------------------------------------------------------------------------

View File

@@ -75,7 +75,7 @@ void RicNewWellPathCrossSectionFeature::onActionTriggered(bool isChecked)
void RicNewWellPathCrossSectionFeature::setupActionLook(QAction* actionToSetup)
{
// actionToSetup->setIcon(QIcon(":/CellFilter_Values.png"));
actionToSetup->setText("New Cross Section");
actionToSetup->setText("New Intersection");
}
//--------------------------------------------------------------------------------------------------
@@ -100,7 +100,7 @@ RicNewWellPathCrossSectionFeatureCmd::~RicNewWellPathCrossSectionFeatureCmd()
//--------------------------------------------------------------------------------------------------
QString RicNewWellPathCrossSectionFeatureCmd::name()
{
return "Create Cross Section From Well Path";
return "Create Intersection From Well Path";
}
//--------------------------------------------------------------------------------------------------