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