[Win] Fixed warnings

Protected object in static class and wrong parameter names in
documentation
This commit is contained in:
thefiddler 2014-04-26 18:22:50 +02:00
parent 8558509379
commit 44526229be

View file

@ -41,8 +41,8 @@ namespace OpenTK.Platform.Windows
/// <summary> /// <summary>
/// Checks if a Wgl extension is supported by the given context. /// Checks if a Wgl extension is supported by the given context.
/// </summary> /// </summary>
/// <param name="context">The device context.</param> /// <param name="dc">The device context.</param>
/// <param name="ext">The extension to check.</param> /// <param name="name">The extension to check.</param>
/// <returns>True if the extension is supported by the given context, false otherwise</returns> /// <returns>True if the extension is supported by the given context, false otherwise</returns>
public static bool SupportsExtension(IntPtr dc, string name) public static bool SupportsExtension(IntPtr dc, string name)
{ {
@ -100,7 +100,7 @@ namespace OpenTK.Platform.Windows
#region Protected Members #region Protected Members
protected object SyncRoot object SyncRoot
{ {
get { return sync; } get { return sync; }
} }