OfficeUtils fix

(cherry picked from commit bfa75aea0208966f2a93a0e6ddb52270940417cd)
(cherry picked from commit 275d7b4149)
(cherry picked from commit 0d81a3f26e908c3a65be77503b0e78c35048579d)
This commit is contained in:
Nathan Brown 2022-10-31 21:58:07 -07:00
commit fcf4b97101

View file

@ -1,13 +1,14 @@
using System.Linq; using System.Linq;
using Microsoft.Win32; using Microsoft.Win32;
namespace Greenshot.Plugin.Office; namespace Greenshot.Plugin.Office
/// <summary>
/// A small utility class for helping with office
/// </summary>
internal static class OfficeUtils
{ {
/// <summary>
/// A small utility class for helping with office
/// </summary>
internal static class OfficeUtils
{
private static readonly string[] OfficeRootKeys = { @"SOFTWARE\Microsoft\Office", @"SOFTWARE\WOW6432Node\Microsoft\Office" }; private static readonly string[] OfficeRootKeys = { @"SOFTWARE\Microsoft\Office", @"SOFTWARE\WOW6432Node\Microsoft\Office" };
/// <summary> /// <summary>
@ -40,4 +41,5 @@ internal static class OfficeUtils
} }
return null; return null;
} }
}
} }