summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/ConvertDialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/DolphinQt/ConvertDialog.cpp')
-rw-r--r--Source/Core/DolphinQt/ConvertDialog.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/ConvertDialog.cpp b/Source/Core/DolphinQt/ConvertDialog.cpp
index 1535a4fe3f..85b48edb6c 100644
--- a/Source/Core/DolphinQt/ConvertDialog.cpp
+++ b/Source/Core/DolphinQt/ConvertDialog.cpp
@@ -387,6 +387,8 @@ void ConvertDialog::Convert()
return;
}
+ int success_count = 0;
+
for (const auto& file : m_files)
{
const auto original_path = file->GetFilePath();
@@ -524,11 +526,13 @@ void ConvertDialog::Convert()
tr("Dolphin failed to complete the requested action."));
return;
}
+
+ success_count++;
}
}
ModalMessageBox::information(this, tr("Success"),
- tr("Successfully converted %n image(s).", "", m_files.size()));
+ tr("Successfully converted %n image(s).", "", success_count));
close();
}