From 077469d5a01c15ffb7fc34eee9560b994d5020b0 Mon Sep 17 00:00:00 2001
From: sledgehammer999
"
- "qBittorrent version: " QBT_VERSION "
"
+#if defined(__x86_64__) || defined(_M_X64)
+ "qBittorrent version: " QBT_VERSION " (64-bit)
"
+#else
+ "qBittorrent version: " QBT_VERSION " (32-bit)
"
+#endif
"Libtorrent version: %1
"
"Qt version: " QT_VERSION_STR "
"
"Boost version: %2
"
diff --git a/src/gui/about_imp.h b/src/gui/about_imp.h
index 310aa72bb..2ff663edc 100644
--- a/src/gui/about_imp.h
+++ b/src/gui/about_imp.h
@@ -47,7 +47,11 @@ public:
setAttribute(Qt::WA_DeleteOnClose);
// Title
- lb_name->setText("qBittorrent " QBT_VERSION "
");
+#if defined(__x86_64__) || defined(_M_X64)
+ lb_name->setText("qBittorrent " QBT_VERSION " (64-bit)
");
+#else
+ lb_name->setText("qBittorrent " QBT_VERSION " (32-bit)
");
+#endif
// About
QString aboutText = QString(