1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2026-03-21 10:47:16 +01:00

Fixed #1561: non-english names will display right now in cluster member compilation warning

This commit is contained in:
Roman Bovsunivskiy 2010-07-12 12:23:26 +00:00
parent d514267732
commit af892eaf93
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2010-07-12 Roman Bovsunivskiy <a2k0001@gmail.com>
* instDialog_ui_opts.cpp (intDialog::fillCompileSelectList): fixed
wrong display of non-ascii symbols in cluster member compilation
warning.
2010-07-11 Vadim Kurland <vadim@vk.crocodile.org>
* FirewallInstaller.cpp (FirewallInstaller::packSSHArgs): fixed

View File

@ -590,8 +590,8 @@ void instDialog::fillCompileSelectList()
{
warn2 <<
QString(tr("Firewall '%1' is member of cluster '%2'")
.arg(fw->getName().c_str())
.arg(cluster->getPath().c_str()));
.arg(QString::fromUtf8(fw->getName().c_str()))
.arg(QString::fromUtf8(cluster->getPath().c_str())));
}
}
}