From 045453fbf26ac7c7b75ab5e1aaf531ba52b5b057 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Sat, 19 Sep 2009 20:30:12 +0000 Subject: [PATCH] Renamed IsWindowVisisble to the correct IsWindowVisible. --- Source/OpenTK/Platform/Windows/API.cs | 2 +- Source/OpenTK/Platform/Windows/WinGLNative.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/OpenTK/Platform/Windows/API.cs b/Source/OpenTK/Platform/Windows/API.cs index 38a6f2a2..e2b011ed 100644 --- a/Source/OpenTK/Platform/Windows/API.cs +++ b/Source/OpenTK/Platform/Windows/API.cs @@ -809,7 +809,7 @@ namespace OpenTK.Platform.Windows #endregion [DllImport("user32.dll")] - public static extern bool IsWindowVisisble(IntPtr intPtr); + public static extern bool IsWindowVisible(IntPtr intPtr); #endregion diff --git a/Source/OpenTK/Platform/Windows/WinGLNative.cs b/Source/OpenTK/Platform/Windows/WinGLNative.cs index 9b61e17d..6f33039d 100644 --- a/Source/OpenTK/Platform/Windows/WinGLNative.cs +++ b/Source/OpenTK/Platform/Windows/WinGLNative.cs @@ -718,7 +718,7 @@ namespace OpenTK.Platform.Windows { get { - return Functions.IsWindowVisisble(window.WindowHandle); + return Functions.IsWindowVisible(window.WindowHandle); } set {