Fix for running against RabbitMQ 2.2
[mono.git] / mcs / class / System.Web / System.Web.UI / IStyleSheet.cs
index 590d277471356f4522ae6b1c3cb63f5416a45efc..dc1256c959518040971981700387c3e6055a5ced 100644 (file)
@@ -4,8 +4,7 @@
 // Authors:
 //      Sanjay Gupta (gsanjay@novell.com)
 //
-// (C) 2004 Novell, Inc (http://www.novell.com)
-//
+// Copyright (C) 2004-2010 Novell, Inc (http://www.novell.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-
-#if NET_2_0
-using System;
+using System.Web.UI.WebControls;
 
 namespace System.Web.UI
 {
        public interface IStyleSheet
        {
-               void CreateStyleRule (Style style, string selection, IUrlResolutionService urlResolver);
+               void CreateStyleRule (Style style, IUrlResolutionService urlResolver, string selection);
                void RegisterStyle (Style style, IUrlResolutionService urlResolver);
        }
 }
-#endif