mirror of
https://github.com/greenshot/greenshot
synced 2025-08-22 06:23:24 -07:00
Fix Compile Error in OfficeUtils
This commit is contained in:
parent
f35fda59c8
commit
5ee9d052b9
1 changed files with 31 additions and 29 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue