# HG changeset patch # User Sebastien Jodogne # Date 1600705793 -7200 # Node ID fb5e620430ae27ac824db18419c84c6c6a42d21b # Parent 32e0c007789d32c4d46fd9dc8a300207a4d7368e fix diff -r 32e0c007789d -r fb5e620430ae Applications/Samples/Common/RtViewerApp.cpp --- a/Applications/Samples/Common/RtViewerApp.cpp Mon Sep 21 18:28:34 2020 +0200 +++ b/Applications/Samples/Common/RtViewerApp.cpp Mon Sep 21 18:29:53 2020 +0200 @@ -75,10 +75,10 @@ } RtViewerApp::RtViewerApp() : - undoStack_(new UndoStack), // Create the volumes that will be filled later on ctVolume_(boost::make_shared()), - doseVolume_(boost::make_shared()) + doseVolume_(boost::make_shared()), + undoStack_(new UndoStack) { } diff -r 32e0c007789d -r fb5e620430ae Applications/Samples/Common/RtViewerApp.h --- a/Applications/Samples/Common/RtViewerApp.h Mon Sep 21 18:28:34 2020 +0200 +++ b/Applications/Samples/Common/RtViewerApp.h Mon Sep 21 18:29:53 2020 +0200 @@ -158,7 +158,6 @@ */ boost::shared_ptr geometryProvider_; - boost::shared_ptr activeTracker_; boost::shared_ptr undoStack_;