Moved PlatformException to the OpenTK namespace. Removed an invalid Debug.Unindent() call.

This commit is contained in:
the_fiddler 2008-04-21 21:31:21 +00:00
parent 7010395b96
commit c0b1f170e8
2 changed files with 9 additions and 6 deletions

View file

@ -8,9 +8,12 @@
using System;
/// <summary>Defines a plaftorm specific exception.</summary>
public class PlatformException : Exception
namespace OpenTK
{
/// <summary>Constructs a new PlatformException.</summary>
public PlatformException(string s) : base(s) { }
}
/// <summary>Defines a plaftorm specific exception.</summary>
public class PlatformException : Exception
{
/// <summary>Constructs a new PlatformException.</summary>
public PlatformException(string s) : base(s) { }
}
}

View file

@ -122,7 +122,7 @@ namespace OpenTK.Platform.X11
}
finally
{
Debug.Unindent();
//Debug.Unindent();
}
}