diff options
author | sr55 <[email protected]> | 2018-05-08 21:03:21 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2018-05-08 21:03:21 +0100 |
commit | d04722a3e9002b6e988403b4743ce86b20b2533c (patch) | |
tree | f5f965dc5f510eaddc75861d63c4364d4abee494 /win/CS/HandBrakeWPF/ViewModels/AboutViewModel.cs | |
parent | 443392f9499ba21814dd1706dc526c6fefcda8f0 (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.cs | 2 |
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());
}
}
|