forked from qt-creator/qt-creator
Small string fix
Change-Id: I06fadcc2643b16a59adb962f134c259aa3991c39 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
This commit is contained in:
@@ -224,7 +224,7 @@ public:
|
|||||||
QFile file(fileName);
|
QFile file(fileName);
|
||||||
quint64 size = static_cast<quint64>(file.size());
|
quint64 size = static_cast<quint64>(file.size());
|
||||||
if (size == 0) {
|
if (size == 0) {
|
||||||
QString msg = tr("The Binary Editor can not open empty files.");
|
QString msg = tr("The Binary Editor cannot open empty files.");
|
||||||
if (errorString)
|
if (errorString)
|
||||||
*errorString = msg;
|
*errorString = msg;
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user