summaryrefslogtreecommitdiffstats
path: root/src/scanprogressdlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/scanprogressdlg.cpp')
-rw-r--r--src/scanprogressdlg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scanprogressdlg.cpp b/src/scanprogressdlg.cpp
index 52dcf08..28708fa 100644
--- a/src/scanprogressdlg.cpp
+++ b/src/scanprogressdlg.cpp
@@ -73,7 +73,7 @@ void ScanProgressDlg::addFiles(int nFiles)
// Update progress only if more than 100 files were scanned since the last
// update
if ((m_nFiles - m_nCurFiles) > 100) {
- sText.sprintf(i18n("Scanned %d files..."), m_nFiles);
+ sText.sprintf(i18n("Scanned %d files...").utf8(), m_nFiles);
m_pText->setText(sText);
m_nCurFiles = m_nFiles;
}