Skip to content

Commit

Permalink
Revert x32/x64 distinction (#4160)
Browse files Browse the repository at this point in the history
  • Loading branch information
vadi2 committed Oct 16, 2020
1 parent 4f38c32 commit df7b49a
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions src/main.cpp
Expand Up @@ -154,25 +154,9 @@ int main(int argc, char* argv[])
app->setOrganizationName(QStringLiteral("Mudlet"));

if (mudlet::scmIsPublicTestVersion) {
#if defined(Q_OS_WIN64)
// Only defined on 64-bit windows
app->setApplicationName(QStringLiteral("Mudlet(x64) Public Test Build"));
#elif defined(Q_OS_WIN32)
// Defined on both 32 and 64-bit windows
app->setApplicationName(QStringLiteral("Mudlet(x32) Public Test Build"));
#else
app->setApplicationName(QStringLiteral("Mudlet Public Test Build"));
#endif
} else {
#if defined(Q_OS_WIN64)
// Only defined on 64-bit windows
app->setApplicationName(QStringLiteral("Mudlet(x64)"));
#elif defined(Q_OS_WIN32)
// Defined on both 32 and 64-bit windows
app->setApplicationName(QStringLiteral("Mudlet(x32)"));
#else
app->setApplicationName(QStringLiteral("Mudlet"));
#endif
}
if (mudlet::scmIsReleaseVersion) {
app->setApplicationVersion(APP_VERSION);
Expand Down

0 comments on commit df7b49a

Please sign in to comment.