diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2024-06-23 12:50:40 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2024-06-23 12:50:40 +0200 |
commit | 875a1da0fb09cd3b7c9da1093be1a696b3839210 (patch) | |
tree | 095a6f7b526bb5117fac55497caf858d68166623 | |
parent | 423352056e0011219b08f869d5268cb610f8b1a3 (diff) | |
download | VeraCrypt-875a1da0fb09cd3b7c9da1093be1a696b3839210.tar.gz VeraCrypt-875a1da0fb09cd3b7c9da1093be1a696b3839210.zip |
macOSX: Add "FUSE-T build" in About dialog when linking against FUSE-T instead of MacFUSE
-rw-r--r-- | src/Main/Forms/AboutDialog.cpp | 6 |
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"); |