Mercurial > hg > svcore
changeset 1505:d7fdc77252c6
Wording change
author | Chris Cannam |
---|---|
date | Mon, 03 Sep 2018 16:15:03 +0100 |
parents | 4700b7188f6c |
children | a250a54c11cc |
files | plugin/PluginScan.cpp |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/plugin/PluginScan.cpp Mon Sep 03 16:14:56 2018 +0100 +++ b/plugin/PluginScan.cpp Mon Sep 03 16:15:03 2018 +0100 @@ -207,10 +207,10 @@ case PluginCheckCode::FAIL_WRONG_ARCHITECTURE: if (tag == "64" || (sizeof(void *) == 8 && tag == "")) { userMessage = QObject::tr - ("Library has wrong architecture - possibly a 32-bit plugin installed in a folder for 64-bit plugins"); + ("Library has wrong architecture - possibly a 32-bit plugin installed in a 64-bit plugin folder"); } else if (tag == "32" || (sizeof(void *) == 4 && tag == "")) { userMessage = QObject::tr - ("Library has wrong architecture - possibly a 64-bit plugin installed in a folder for 32-bit plugins"); + ("Library has wrong architecture - possibly a 64-bit plugin installed in a 32-bit plugin folder"); } break;