From 022b37e3ccaa1034dc9222720685d7684193b749 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Tue, 21 Aug 2007 09:43:50 +0000 Subject: [PATCH] Fixed a CLSCompliance issue. --- Source/OpenTK/Platform/X11/Functions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/OpenTK/Platform/X11/Functions.cs b/Source/OpenTK/Platform/X11/Functions.cs index 18998e53..5741412b 100644 --- a/Source/OpenTK/Platform/X11/Functions.cs +++ b/Source/OpenTK/Platform/X11/Functions.cs @@ -165,7 +165,7 @@ namespace OpenTK.Platform.X11 [DllImport("libX11", EntryPoint = "XChangeProperty")] public extern static int XChangeProperty(IntPtr display, IntPtr window, IntPtr property, IntPtr type, int format, PropertyMode mode, ref int value, int nelements); - [DllImport("libX11", EntryPoint = "XChangeProperty")] + [DllImport("libX11", EntryPoint = "XChangeProperty"), CLSCompliant(false)] public extern static int XChangeProperty(IntPtr display, IntPtr window, IntPtr property, IntPtr type, int format, PropertyMode mode, ref IntPtr value, int nelements); [DllImport("libX11", EntryPoint = "XChangeProperty"), CLSCompliant(false)]