Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs
diff options
context:
space:
mode:
authorPaolo Molaro <lupus@oddwiz.org>2003-05-15 00:02:29 +0400
committerPaolo Molaro <lupus@oddwiz.org>2003-05-15 00:02:29 +0400
commit204f7ba769369cf5c97310469ddaf0334894fc5a (patch)
tree0e7a8d7a99f0adc0153e654d2ef255cc561d0f26 /mcs
parent923769916a80ca6eb11bd075adb8031a5f1244e5 (diff)
Make MonoTODO attributes internal.
svn path=/trunk/mcs/; revision=14587
Diffstat (limited to 'mcs')
-rwxr-xr-xmcs/class/Microsoft.JScript/Microsoft.JScript/TODOAttribute.cs2
-rw-r--r--mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/TODOAttribute.cs2
-rw-r--r--mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/TODOAttribute.cs2
-rw-r--r--mcs/class/Mono.Data.Tds/Mono.Data.Tds.Protocol/TODOAttribute.cs2
-rw-r--r--mcs/class/System.Configuration.Install/System.Configuration.Install/TODOAttribute.cs2
-rw-r--r--mcs/class/System.Drawing/System.Drawing.Drawing2D/TODOAttribute.cs2
-rwxr-xr-xmcs/class/System.EnterpriseServices/System.EnterpriseServices/TODOAttribute.cs2
-rw-r--r--mcs/class/System.Management/System.Management/TODOAttribute.cs2
-rw-r--r--mcs/class/System.Runtime.Remoting/System.Runtime.Remoting/TODOAttribute.cs2
-rwxr-xr-xmcs/class/System.Runtime.Serialization.Formatters.Soap/System.Runtime.Serialization.Formatters.Soap/TODOAttribute.cs2
-rw-r--r--mcs/class/System.Security/System.Security.Cryptography.Xml/TODOAttribute.cs2
-rw-r--r--mcs/class/corlib/System/TODOAttribute.cs2
12 files changed, 12 insertions, 12 deletions
diff --git a/mcs/class/Microsoft.JScript/Microsoft.JScript/TODOAttribute.cs b/mcs/class/Microsoft.JScript/Microsoft.JScript/TODOAttribute.cs
index 39e67c91f78..a36c1665260 100755
--- a/mcs/class/Microsoft.JScript/Microsoft.JScript/TODOAttribute.cs
+++ b/mcs/class/Microsoft.JScript/Microsoft.JScript/TODOAttribute.cs
@@ -18,7 +18,7 @@ namespace Microsoft.JScript {
/// Use this to decorate any element which you think is not complete
/// </remarks>
[AttributeUsage (AttributeTargets.All, AllowMultiple=true)]
- public class MonoTODOAttribute : Attribute {
+ internal class MonoTODOAttribute : Attribute {
private string comment;
diff --git a/mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/TODOAttribute.cs b/mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/TODOAttribute.cs
index fe572f886c7..6e75d442bc6 100644
--- a/mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/TODOAttribute.cs
+++ b/mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/TODOAttribute.cs
@@ -19,7 +19,7 @@ namespace Microsoft.VisualBasic.CompilerServices {
/// Use this to decorate any element which you think is not complete
/// </remarks>
[AttributeUsage (AttributeTargets.All, AllowMultiple=true)]
- public class MonoTODOAttribute : Attribute {
+ internal class MonoTODOAttribute : Attribute {
private string comment;
diff --git a/mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/TODOAttribute.cs b/mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/TODOAttribute.cs
index a38969af212..ffc3935fbd4 100644
--- a/mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/TODOAttribute.cs
+++ b/mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/TODOAttribute.cs
@@ -19,7 +19,7 @@ namespace Microsoft.VisualBasic {
/// Use this to decorate any element which you think is not complete
/// </remarks>
[AttributeUsage (AttributeTargets.All, AllowMultiple=true)]
- public class MonoTODOAttribute : Attribute {
+ internal class MonoTODOAttribute : Attribute {
private string comment;
diff --git a/mcs/class/Mono.Data.Tds/Mono.Data.Tds.Protocol/TODOAttribute.cs b/mcs/class/Mono.Data.Tds/Mono.Data.Tds.Protocol/TODOAttribute.cs
index 5936e6bfa26..044de8a8c82 100644
--- a/mcs/class/Mono.Data.Tds/Mono.Data.Tds.Protocol/TODOAttribute.cs
+++ b/mcs/class/Mono.Data.Tds/Mono.Data.Tds.Protocol/TODOAttribute.cs
@@ -18,7 +18,7 @@ namespace Mono.Data.Tds.Protocol {
/// Use this to decorate any element which you think is not complete
/// </remarks>
[AttributeUsage (AttributeTargets.All)]
- public class MonoTODOAttribute : Attribute {
+ internal class MonoTODOAttribute : Attribute {
string comment;
diff --git a/mcs/class/System.Configuration.Install/System.Configuration.Install/TODOAttribute.cs b/mcs/class/System.Configuration.Install/System.Configuration.Install/TODOAttribute.cs
index 1682ac8df6e..2075e1aa48a 100644
--- a/mcs/class/System.Configuration.Install/System.Configuration.Install/TODOAttribute.cs
+++ b/mcs/class/System.Configuration.Install/System.Configuration.Install/TODOAttribute.cs
@@ -19,7 +19,7 @@ namespace System.Configuration.Install {
/// Use this to decorate any element which you think is not complete
/// </remarks>
[AttributeUsage (AttributeTargets.All, AllowMultiple=true)]
- public class MonoTODOAttribute : Attribute {
+ internal class MonoTODOAttribute : Attribute {
private string comment;
diff --git a/mcs/class/System.Drawing/System.Drawing.Drawing2D/TODOAttribute.cs b/mcs/class/System.Drawing/System.Drawing.Drawing2D/TODOAttribute.cs
index 0920ce8f92d..575d1f3b86b 100644
--- a/mcs/class/System.Drawing/System.Drawing.Drawing2D/TODOAttribute.cs
+++ b/mcs/class/System.Drawing/System.Drawing.Drawing2D/TODOAttribute.cs
@@ -17,7 +17,7 @@ namespace System {
/// Use this to decorate any element which you think is not complete
/// </remarks>
[AttributeUsage (AttributeTargets.All, AllowMultiple=true)]
- public class MonoTODOAttribute : Attribute {
+ internal class MonoTODOAttribute : Attribute {
private string comment;
diff --git a/mcs/class/System.EnterpriseServices/System.EnterpriseServices/TODOAttribute.cs b/mcs/class/System.EnterpriseServices/System.EnterpriseServices/TODOAttribute.cs
index d134ddcff7c..5a3589068ec 100755
--- a/mcs/class/System.EnterpriseServices/System.EnterpriseServices/TODOAttribute.cs
+++ b/mcs/class/System.EnterpriseServices/System.EnterpriseServices/TODOAttribute.cs
@@ -17,7 +17,7 @@ namespace System.EnterpriseServices {
/// Use this to decorate any element which you think is not complete
/// </remarks>
[AttributeUsage (AttributeTargets.All, AllowMultiple=true)]
- public class MonoTODOAttribute : Attribute {
+ internal class MonoTODOAttribute : Attribute {
private string comment;
diff --git a/mcs/class/System.Management/System.Management/TODOAttribute.cs b/mcs/class/System.Management/System.Management/TODOAttribute.cs
index fe45cbc98ef..aa39d7928c0 100644
--- a/mcs/class/System.Management/System.Management/TODOAttribute.cs
+++ b/mcs/class/System.Management/System.Management/TODOAttribute.cs
@@ -17,7 +17,7 @@ namespace System.Management
/// Use this to decorate any element which you think is not complete
/// </remarks>
[AttributeUsage (AttributeTargets.All, AllowMultiple=true)]
- public class MonoTODOAttribute : Attribute
+ internal class MonoTODOAttribute : Attribute
{
string comment;
diff --git a/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting/TODOAttribute.cs b/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting/TODOAttribute.cs
index 0920ce8f92d..575d1f3b86b 100644
--- a/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting/TODOAttribute.cs
+++ b/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting/TODOAttribute.cs
@@ -17,7 +17,7 @@ namespace System {
/// Use this to decorate any element which you think is not complete
/// </remarks>
[AttributeUsage (AttributeTargets.All, AllowMultiple=true)]
- public class MonoTODOAttribute : Attribute {
+ internal class MonoTODOAttribute : Attribute {
private string comment;
diff --git a/mcs/class/System.Runtime.Serialization.Formatters.Soap/System.Runtime.Serialization.Formatters.Soap/TODOAttribute.cs b/mcs/class/System.Runtime.Serialization.Formatters.Soap/System.Runtime.Serialization.Formatters.Soap/TODOAttribute.cs
index 0b89c8b0a77..0f91b782a8a 100755
--- a/mcs/class/System.Runtime.Serialization.Formatters.Soap/System.Runtime.Serialization.Formatters.Soap/TODOAttribute.cs
+++ b/mcs/class/System.Runtime.Serialization.Formatters.Soap/System.Runtime.Serialization.Formatters.Soap/TODOAttribute.cs
@@ -17,7 +17,7 @@ namespace System.Runtime.Serialization.Formatters.Soap {
/// Use this to decorate any element which you think is not complete
/// </remarks>
[AttributeUsage (AttributeTargets.All, AllowMultiple=true)]
- public class MonoTODOAttribute : Attribute {
+ internal class MonoTODOAttribute : Attribute {
private string comment;
diff --git a/mcs/class/System.Security/System.Security.Cryptography.Xml/TODOAttribute.cs b/mcs/class/System.Security/System.Security.Cryptography.Xml/TODOAttribute.cs
index 0920ce8f92d..575d1f3b86b 100644
--- a/mcs/class/System.Security/System.Security.Cryptography.Xml/TODOAttribute.cs
+++ b/mcs/class/System.Security/System.Security.Cryptography.Xml/TODOAttribute.cs
@@ -17,7 +17,7 @@ namespace System {
/// Use this to decorate any element which you think is not complete
/// </remarks>
[AttributeUsage (AttributeTargets.All, AllowMultiple=true)]
- public class MonoTODOAttribute : Attribute {
+ internal class MonoTODOAttribute : Attribute {
private string comment;
diff --git a/mcs/class/corlib/System/TODOAttribute.cs b/mcs/class/corlib/System/TODOAttribute.cs
index 0920ce8f92d..575d1f3b86b 100644
--- a/mcs/class/corlib/System/TODOAttribute.cs
+++ b/mcs/class/corlib/System/TODOAttribute.cs
@@ -17,7 +17,7 @@ namespace System {
/// Use this to decorate any element which you think is not complete
/// </remarks>
[AttributeUsage (AttributeTargets.All, AllowMultiple=true)]
- public class MonoTODOAttribute : Attribute {
+ internal class MonoTODOAttribute : Attribute {
private string comment;