From 7c8f8b1b767d70b08a956d4c16e15f41b180b04c Mon Sep 17 00:00:00 2001 From: wmayer Date: Fri, 13 Jun 2014 18:37:15 +0200 Subject: [PATCH] + replace 'Platform' with 'Word size' --- src/Gui/Splashscreen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/Splashscreen.cpp b/src/Gui/Splashscreen.cpp index 363b28c34f..860b552881 100644 --- a/src/Gui/Splashscreen.cpp +++ b/src/Gui/Splashscreen.cpp @@ -414,7 +414,7 @@ void AboutDialog::on_copyButton_clicked() QString minor = QString::fromAscii(config["BuildVersionMinor"].c_str()); QString build = QString::fromAscii(config["BuildRevision"].c_str()); str << "OS: " << getOperatingSystem() << endl; - str << "Platform: " << QSysInfo::WordSize << "-bit" << endl; + str << "Word size: " << QSysInfo::WordSize << "-bit" << endl; str << "Version: " << major << "." << minor << "." << build << endl; it = config.find("BuildRevisionBranch"); if (it != config.end())