mirror of
https://github.com/greenshot/greenshot
synced 2025-08-21 05:53:27 -07:00
Code quality changes
This commit is contained in:
parent
f07ed83722
commit
610f45d082
189 changed files with 4609 additions and 5203 deletions
|
@ -253,8 +253,8 @@ namespace Greenshot.Interop.Office {
|
|||
|
||||
// See: http://msdn.microsoft.com/en-us/library/microsoft.office.interop.outlook.propertyaccessor_members.aspx
|
||||
public interface IPropertyAccessor : ICommon {
|
||||
void SetProperty(string SchemaName, Object Value);
|
||||
Object GetProperty(string SchemaName);
|
||||
void SetProperty(string SchemaName, object Value);
|
||||
object GetProperty(string SchemaName);
|
||||
}
|
||||
|
||||
// Schema definitions for the MAPI properties
|
||||
|
@ -363,7 +363,7 @@ namespace Greenshot.Interop.Office {
|
|||
// See: http://msdn.microsoft.com/en-us/library/microsoft.office.interop.outlook._application.inspectors.aspx
|
||||
public interface IInspectors : ICommon, ICollection, IEnumerable {
|
||||
// Use index + 1!!
|
||||
IInspector this[Object Index] {
|
||||
IInspector this[object Index] {
|
||||
get;
|
||||
}
|
||||
}
|
||||
|
@ -374,7 +374,7 @@ namespace Greenshot.Interop.Office {
|
|||
/// </summary>
|
||||
public interface IExplorers : ICommon, ICollection, IEnumerable {
|
||||
// Use index + 1!!
|
||||
IExplorer this[Object Index] {
|
||||
IExplorer this[object Index] {
|
||||
get;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue