summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/ViewModels/AboutViewModel.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2018-05-08 21:03:21 +0100
committersr55 <[email protected]>2018-05-08 21:03:21 +0100
commitd04722a3e9002b6e988403b4743ce86b20b2533c (patch)
treef5f965dc5f510eaddc75861d63c4364d4abee494 /win/CS/HandBrakeWPF/ViewModels/AboutViewModel.cs
parent443392f9499ba21814dd1706dc526c6fefcda8f0 (diff)
WinGui: Remove some unnecessary version / bitness calls in the Services library.
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/AboutViewModel.cs')
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/AboutViewModel.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/AboutViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/AboutViewModel.cs
index cb9cef3e7..8096441b2 100644
--- a/win/CS/HandBrakeWPF/ViewModels/AboutViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/AboutViewModel.cs
@@ -33,7 +33,7 @@ namespace HandBrakeWPF.ViewModels
{
get
{
- return string.Format("{0} - {1}", VersionHelper.GetVersion(), VersionHelper.GetPlatformBitnessVersion());
+ return string.Format("{0}", VersionHelper.GetVersion());
}
}