summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@digia.com>2012-10-01 16:49:47 +0200
committerRobert Loehning <robert.loehning@digia.com>2012-10-01 17:11:58 +0200
commit319e425e658be914dc6601c1244c83d57e90e814 (patch)
tree35c637661ebafd152da169c6cbacb9a1aac73ce3 /src
parentc5e0f9cfbdf2fee02d66c7dfff0a4d4977c2afe0 (diff)
downloadqt-creator-319e425e658be914dc6601c1244c83d57e90e814.tar.gz
Small string fix
Change-Id: I06fadcc2643b16a59adb962f134c259aa3991c39 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
Diffstat (limited to 'src')
-rw-r--r--src/plugins/bineditor/bineditorplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/bineditor/bineditorplugin.cpp b/src/plugins/bineditor/bineditorplugin.cpp
index ce28543c22..fc75eff62b 100644
--- a/src/plugins/bineditor/bineditorplugin.cpp
+++ b/src/plugins/bineditor/bineditorplugin.cpp
@@ -224,7 +224,7 @@ public:
QFile file(fileName);
quint64 size = static_cast<quint64>(file.size());
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)
*errorString = msg;
else