Author: marek
Date: 2008-02-20 13:27:02 -0500 (Wed, 20 Feb 2008)
New Revision: 96284

Modified:
   trunk/monodevelop/main/src/addins/AspNetAddIn/ChangeLog
   
trunk/monodevelop/main/src/addins/AspNetAddIn/Project/VerifyCodeBehindBuildStep.cs
Log:
2008-02-20  Marek Safar <[EMAIL PROTECTED]> 

        * Project/VerifyCodeBehindBuildStep.cs: Fixed missing parenthesis.
        


Modified: trunk/monodevelop/main/src/addins/AspNetAddIn/ChangeLog
===================================================================
--- trunk/monodevelop/main/src/addins/AspNetAddIn/ChangeLog     2008-02-20 
18:13:32 UTC (rev 96283)
+++ trunk/monodevelop/main/src/addins/AspNetAddIn/ChangeLog     2008-02-20 
18:27:02 UTC (rev 96284)
@@ -1,3 +1,7 @@
+2008-02-20  Marek Safar <[EMAIL PROTECTED]> 
+
+       * Project/VerifyCodeBehindBuildStep.cs: Fixed missing parenthesis.
+
 2008-02-20  Michael Hutchinson <[EMAIL PROTECTED]> 
 
        * Project/IAspNetLanguageBinding.cs,

Modified: 
trunk/monodevelop/main/src/addins/AspNetAddIn/Project/VerifyCodeBehindBuildStep.cs
===================================================================
--- 
trunk/monodevelop/main/src/addins/AspNetAddIn/Project/VerifyCodeBehindBuildStep.cs
  2008-02-20 18:13:32 UTC (rev 96283)
+++ 
trunk/monodevelop/main/src/addins/AspNetAddIn/Project/VerifyCodeBehindBuildStep.cs
  2008-02-20 18:27:02 UTC (rev 96284)
@@ -26,7 +26,7 @@
                                return base.Build (monitor, project);
                        
                        RefactorOperations ops = 
aspProject.LanguageBinding.Refactorer.SupportedOperations;
-                       if (ops & RefactorOperations.AddField != 
RefactorOperations.AddField)
+                       if ((ops & RefactorOperations.AddField) != 
RefactorOperations.AddField)
                                return base.Build (monitor, project);
                        
                        //lists of members to be added 

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to