[mono/mono] [2 commits] a726ea2b: [monop] Fix handling of private and filter-obsolete flags when rendering all types

"Miguel de Icaza ([email protected])" <[email protected]> Wed, 20 Nov 2013 17:38:14 +0000
Newsgroups gmane.comp.gnome.mono.patches
Message-ID <000001427697443a-e5574b37-7bab-4378-b7e3-82b63319d30c-000000@email.amazonses.com>
   Branch: refs/heads/master
     Home: https://github.com/mono/mono
  Compare: https://github.com/mono/mono/compare/05007a63c593...748a705230db

   Commit: a726ea2b13600bcf757c0b86ff9abe6e9b551283
   Author: Andrea Canciani <[email protected]> (ranma42)
     Date: 2013-11-20 16:42:49 GMT
      URL: https://github.com/mono/mono/commit/a726ea2b13600bcf757c0b86ff9abe6e9b551283

[monop] Fix handling of private and filter-obsolete flags when rendering all types

They were simply swapped.

Changed paths:
  M mcs/tools/monop/monop.cs

Modified: mcs/tools/monop/monop.cs
===================================================================
@@ -315,7 +315,7 @@ static void Main (string [] args)
 			assembly = options.AssemblyReference;
 
 			if (options.ShowAll){
-				ShowAll (assembly, options.FilterObsolete, options.ShowPrivate);
+				ShowAll (assembly, options.ShowPrivate, options.FilterObsolete);
 				return;
 			} else {
 				if (options.Type == null) {

   Commit: 748a705230dbb4d5964bbaf8b6d592aad2ff2025
   Author: Miguel de Icaza <[email protected]> (migueldeicaza)
     Date: 2013-11-20 17:34:34 GMT
      URL: https://github.com/mono/mono/commit/748a705230dbb4d5964bbaf8b6d592aad2ff2025

Merge pull request #814 from ranma42/fix-monop

[monop] Fix handling of private and filter-obsolete flags when rendering...

Changed paths:
  M mcs/tools/monop/monop.cs

Modified: mcs/tools/monop/monop.cs
===================================================================
@@ -315,7 +315,7 @@ static void Main (string [] args)
 			assembly = options.AssemblyReference;
 
 			if (options.ShowAll){
-				ShowAll (assembly, options.FilterObsolete, options.ShowPrivate);
+				ShowAll (assembly, options.ShowPrivate, options.FilterObsolete);
 				return;
 			} else {
 				if (options.Type == null) {


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