~ubuntu-branches/ubuntu/utopic/freecad/utopic-proposed

« back to all changes in this revision

Viewing changes to src/Gui/Splashscreen.cpp

  • Committer: Package Import Robot
  • Author(s): Anton Gladky
  • Date: 2014-07-22 20:15:18 UTC
  • mfrom: (30.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140722201518-szma903mba26tphe
Tags: 0.14.3702+dfsg-1
* [7fc727b] Imported Upstream version 0.14.3702
* [3edf0de] Refresh patches.
* [077b63a] Redirect unittest output into stdout. Fixes autopkgtests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
414
414
    QString minor  = QString::fromAscii(config["BuildVersionMinor"].c_str());
415
415
    QString build  = QString::fromAscii(config["BuildRevision"].c_str());
416
416
    str << "OS: " << getOperatingSystem() << endl;
417
 
    str << "Platform: " << QSysInfo::WordSize << "-bit" << endl;
 
417
    str << "Word size: " << QSysInfo::WordSize << "-bit" << endl;
418
418
    str << "Version: " << major << "." << minor << "." << build << endl;
419
419
    it = config.find("BuildRevisionBranch");
420
420
    if (it != config.end())