(#486) Renamed "trace" to "track"

This commit is contained in:
Pål Hagen
2015-09-18 12:29:23 +02:00
parent ecf0d19110
commit 479b2083ef
26 changed files with 203 additions and 203 deletions

View File

@@ -29,7 +29,7 @@
#include "RimViewLinkerCollection.h"
#include "RimWellLogPlot.h"
#include "RimWellLogPlotCollection.h"
#include "RimWellLogPlotTrace.h"
#include "RimWellLogPlotTrack.h"
#include "RimWellPathCollection.h"
#include "cafNotificationCenter.h"
@@ -117,11 +117,11 @@ void RicDeleteItemExec::redo()
wellLogPlot->updateAvailableDepthRange();
}
RimWellLogPlotTrace* wellLogPlotTrace;
parentObj->firstAnchestorOrThisOfType(wellLogPlotTrace);
if (wellLogPlotTrace)
RimWellLogPlotTrack* wellLogPlotTrack;
parentObj->firstAnchestorOrThisOfType(wellLogPlotTrack);
if (wellLogPlotTrack)
{
wellLogPlotTrace->updateAxisRangesAndReplot();
wellLogPlotTrack->updateAxisRangesAndReplot();
}
RimWellLogPlotCollection* wellLogPlotCollection = NULL;