diff --git a/src/plugins/organisation/FileBrowserWindow/src/filebrowserwindowwidget.cpp b/src/plugins/organisation/FileBrowserWindow/src/filebrowserwindowwidget.cpp index 35bf1b1550..42cbfc99bb 100644 --- a/src/plugins/organisation/FileBrowserWindow/src/filebrowserwindowwidget.cpp +++ b/src/plugins/organisation/FileBrowserWindow/src/filebrowserwindowwidget.cpp @@ -346,8 +346,8 @@ void FileBrowserWindowWidget::goToOtherItem(QStringList &pItems, // Go to the previous/next item and move the last item from our list of // items to our list of other items - // First, we must stop keeping track of the change of item otherwise it's - // going to mess things up + // First, we must stop tracking the change of item otherwise it's going to + // mess things up disconnect(selectionModel(), &QItemSelectionModel::currentChanged, this, &FileBrowserWindowWidget::itemChanged); diff --git a/src/plugins/simulation/SimulationExperimentView/src/simulationexperimentviewsimulationwidget.cpp b/src/plugins/simulation/SimulationExperimentView/src/simulationexperimentviewsimulationwidget.cpp index be54eabaa4..56ca1d7f69 100644 --- a/src/plugins/simulation/SimulationExperimentView/src/simulationexperimentviewsimulationwidget.cpp +++ b/src/plugins/simulation/SimulationExperimentView/src/simulationexperimentviewsimulationwidget.cpp @@ -890,8 +890,8 @@ void SimulationExperimentViewSimulationWidget::initialize(bool pReloadingView) // CellML file)... mContentsWidget->setUpdatesEnabled(false); - // Stop keeping track of certain things (so that updatePlot() doesn't - // get called unnecessarily) + // Stop tracking certain things (so that updatePlot() doesn't get called + // unnecessarily) // Note: see the corresponding code towards the end of this method... SimulationExperimentViewInformationWidget *informationWidget = mContentsWidget->informationWidget(); @@ -3003,7 +3003,7 @@ void SimulationExperimentViewSimulationWidget::simulationDone(qint64 pElapsedTim mContentsWidget->informationWidget()->parametersWidget()->updateParameters(mSimulation->currentPoint()); - // Stop keeping track of our simulation progress + // Stop tracking our simulation progress mProgress = -1; } @@ -3021,8 +3021,7 @@ void SimulationExperimentViewSimulationWidget::resetProgressBar() void SimulationExperimentViewSimulationWidget::resetFileTabIcon() { - // Stop tracking our simulation progress and let people know that our file - // tab icon should be reset + // Let people know that our file tab icon should be reset static const QIcon NoIcon = QIcon();