- fix: can't read project templates when path has non-ascii chars

This commit is contained in:
royqh1979@gmail.com 2022-02-11 09:32:43 +08:00
parent ad0417aec8
commit cb0fd24ebe
2 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@ Red Panda C++ Version 0.14.2
- enhancement: file system view mode for project - enhancement: file system view mode for project
- enhancement: remove / rename / create new folder in the files view - enhancement: remove / rename / create new folder in the files view
- fix: crash when there are catch blocks in the upper most scope - fix: crash when there are catch blocks in the upper most scope
- fix: can't read project templates when path has non-ascii chars
Red Panda C++ Version 0.14.1 Red Panda C++ Version 0.14.1
- enhancement: custom theme - enhancement: custom theme

View File

@ -84,7 +84,7 @@ void ProjectTemplate::readTemplateFile(const QString &fileName)
if (QFile(fileName).exists()) { if (QFile(fileName).exists()) {
mFileName = fileName; mFileName = fileName;
mIni = std::make_shared<SimpleIni>(); mIni = std::make_shared<SimpleIni>();
if (mIni->LoadFile(toByteArray(mFileName)) != SI_OK) { if (mIni->LoadFile(mFileName.toLocal8Bit()) != SI_OK) {
QMessageBox::critical(pMainWindow, QMessageBox::critical(pMainWindow,
tr("Read failed."), tr("Read failed."),
tr("Can't read template file '%1'.").arg(fileName), tr("Can't read template file '%1'.").arg(fileName),