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;
|
using System;
|
||||||
|
|
||||||
|
namespace OpenTK
|
||||||
|
{
|
||||||
/// <summary>Defines a plaftorm specific exception.</summary>
|
/// <summary>Defines a plaftorm specific exception.</summary>
|
||||||
public class PlatformException : Exception
|
public class PlatformException : Exception
|
||||||
{
|
{
|
||||||
/// <summary>Constructs a new PlatformException.</summary>
|
/// <summary>Constructs a new PlatformException.</summary>
|
||||||
public PlatformException(string s) : base(s) { }
|
public PlatformException(string s) : base(s) { }
|
||||||
}
|
}
|
||||||
|
}
|
|
@ -122,7 +122,7 @@ namespace OpenTK.Platform.X11
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
Debug.Unindent();
|
//Debug.Unindent();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue