From 02e5ba79cb2c2e1dff578ff96c855696b4b034da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A5l=20Hagen?= Date: Wed, 1 Jul 2015 10:05:12 +0200 Subject: [PATCH] (#287) Renamed method with name conflicting with virtual method --- ApplicationCode/UserInterface/RiuMultiCaseImportDialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ApplicationCode/UserInterface/RiuMultiCaseImportDialog.cpp b/ApplicationCode/UserInterface/RiuMultiCaseImportDialog.cpp index 8a05e4972c..8a3466df5a 100644 --- a/ApplicationCode/UserInterface/RiuMultiCaseImportDialog.cpp +++ b/ApplicationCode/UserInterface/RiuMultiCaseImportDialog.cpp @@ -53,7 +53,7 @@ public: } } - void removeRows(const QModelIndexList& indexes) + void removeFileNames(const QModelIndexList& indexes) { for (int i = indexes.size() - 1; i >= 0; i--) { @@ -247,6 +247,6 @@ void RiuMultiCaseImportDialog::on_m_removeEclipseCaseButton_clicked() FileListModel* dataModel = static_cast(ui->m_eclipseCasesList->model()); Q_ASSERT(dataModel); - dataModel->removeRows(selection); + dataModel->removeFileNames(selection); } }