Fixed XML docs and remove unnecessary CLSCompliance attributes.

This commit is contained in:
the_fiddler 2009-06-28 10:52:58 +00:00
parent 1bdc6b6634
commit 170568c57d
2 changed files with 9 additions and 9 deletions

View file

@ -662,7 +662,7 @@ namespace OpenTK
/// <summary> /// <summary>
/// Negates an instance. /// Negates an instance.
/// </summary> /// </summary>
/// <param name="left">The instance.</param> /// <param name="vec">The instance.</param>
/// <returns>The result of the operation.</returns> /// <returns>The result of the operation.</returns>
public static Vector2d operator -(Vector2d vec) public static Vector2d operator -(Vector2d vec)
{ {
@ -674,8 +674,8 @@ namespace OpenTK
/// <summary> /// <summary>
/// Multiplies an instance by a scalar. /// Multiplies an instance by a scalar.
/// </summary> /// </summary>
/// <param name="left">The instance.</param> /// <param name="vec">The instance.</param>
/// <param name="right">The scalar.</param> /// <param name="f">The scalar.</param>
/// <returns>The result of the operation.</returns> /// <returns>The result of the operation.</returns>
public static Vector2d operator *(Vector2d vec, double f) public static Vector2d operator *(Vector2d vec, double f)
{ {
@ -687,8 +687,8 @@ namespace OpenTK
/// <summary> /// <summary>
/// Multiply an instance by a scalar. /// Multiply an instance by a scalar.
/// </summary> /// </summary>
/// <param name="left">The scalar.</param> /// <param name="f">The scalar.</param>
/// <param name="right">The instance.</param> /// <param name="vec">The instance.</param>
/// <returns>The result of the operation.</returns> /// <returns>The result of the operation.</returns>
public static Vector2d operator *(double f, Vector2d vec) public static Vector2d operator *(double f, Vector2d vec)
{ {
@ -700,8 +700,8 @@ namespace OpenTK
/// <summary> /// <summary>
/// Divides an instance by a scalar. /// Divides an instance by a scalar.
/// </summary> /// </summary>
/// <param name="left">The instance.</param> /// <param name="vec">The instance.</param>
/// <param name="right">The scalar.</param> /// <param name="f">The scalar.</param>
/// <returns>The result of the operation.</returns> /// <returns>The result of the operation.</returns>
public static Vector2d operator /(Vector2d vec, double f) public static Vector2d operator /(Vector2d vec, double f)
{ {
@ -723,7 +723,7 @@ namespace OpenTK
} }
/// <summary> /// <summary>
/// Compares two instances for ljequality. /// Compares two instances for ienquality.
/// </summary> /// </summary>
/// <param name="left">The left instance.</param> /// <param name="left">The left instance.</param>
/// <param name="right">The right instance.</param> /// <param name="right">The right instance.</param>

View file

@ -1102,7 +1102,7 @@ namespace OpenTK.Platform.X11
Append = 2 Append = 2
} }
[StructLayout(LayoutKind.Sequential), CLSCompliant(false)] [StructLayout(LayoutKind.Sequential)]
internal struct XKeyBoardState internal struct XKeyBoardState
{ {
public int key_click_percent; public int key_click_percent;