VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Main
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2024-06-23 12:50:40 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2024-06-23 12:50:40 +0200
commit875a1da0fb09cd3b7c9da1093be1a696b3839210 (patch)
tree095a6f7b526bb5117fac55497caf858d68166623 /src/Main
parent423352056e0011219b08f869d5268cb610f8b1a3 (diff)
downloadVeraCrypt-875a1da0fb09cd3b7c9da1093be1a696b3839210.tar.gz
VeraCrypt-875a1da0fb09cd3b7c9da1093be1a696b3839210.zip
macOSX: Add "FUSE-T build" in About dialog when linking against FUSE-T instead of MacFUSE
Diffstat (limited to 'src/Main')
-rw-r--r--src/Main/Forms/AboutDialog.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Main/Forms/AboutDialog.cpp b/src/Main/Forms/AboutDialog.cpp
index 6c0daaf0..01c579d5 100644
--- a/src/Main/Forms/AboutDialog.cpp
+++ b/src/Main/Forms/AboutDialog.cpp
@@ -27,7 +27,11 @@ namespace VeraCrypt
versionStaticTextFont.SetWeight (wxFONTWEIGHT_BOLD);
VersionStaticText->SetFont (versionStaticTextFont);
- VersionStaticText->SetLabel (Application::GetName() + L" " + StringConverter::ToWide (Version::String()));
+ wstring versionStr = StringConverter::ToWide (Version::String());
+#ifdef VC_MACOSX_FUSET
+ versionStr += L" (FUSE-T build)";
+#endif
+ VersionStaticText->SetLabel (Application::GetName() + L" " + versionStr);
CopyrightStaticText->SetLabel (TC_STR_RELEASED_BY);
WebsiteHyperlink->SetLabel (L"www.idrix.fr");