Moved PlatformException to the OpenTK namespace. Removed an invalid Debug.Unindent() call.
This commit is contained in:
parent
7010395b96
commit
c0b1f170e8
2 changed files with 9 additions and 6 deletions
|
@ -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) { }
|
||||
}
|
||||
}
|
|
@ -122,7 +122,7 @@ namespace OpenTK.Platform.X11
|
|||
}
|
||||
finally
|
||||
{
|
||||
Debug.Unindent();
|
||||
//Debug.Unindent();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue