Merge pull request #136 from redchenjs/master

fix compilation error on ARM platform. close #135
This commit is contained in:
DreamSourceLab 2018-07-07 13:47:53 +08:00 committed by GitHub
commit 55bcb5f7a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,6 +44,8 @@ About::About(QWidget *parent) :
QString arch = "x64";
#elif defined(__i386) || defined(_M_IX86)
QString arch = "x86";
#elif defined(__arm__) || defined(_M_ARM)
QString arch = "arm";
#endif
QString version = tr("<font size=24>DSView %1 (%2)</font><br />")