From 865f8ffd083368fda08dbe3c8af91e065976cb8a Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Tue, 6 Nov 2007 13:37:19 +0000 Subject: [PATCH] Corrected some warnings. --- Source/OpenTK/GameWindow.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/OpenTK/GameWindow.cs b/Source/OpenTK/GameWindow.cs index d4574aa8..a6c92aa5 100644 --- a/Source/OpenTK/GameWindow.cs +++ b/Source/OpenTK/GameWindow.cs @@ -250,12 +250,12 @@ namespace OpenTK get { throw new NotImplementedException(); - return glWindow.Visible; + //return glWindow.Visible; } set { throw new NotImplementedException(); - glWindow.Visible = value; + //glWindow.Visible = value; } }