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

github.com/mono/mono-addins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlluis <@192.168.1.100>2011-02-08 21:19:10 +0300
committerlluis <@192.168.1.100>2011-02-08 21:19:10 +0300
commit4c41477f6a4903bfc49c53e66610b5578f8fe9c2 (patch)
treea4e2aca180c7af84f847506bcd852452318ed4d0 /Mono.Addins.Setup
parent54e0632ca4e8334b7824335d4b3493ffc6ddb0b3 (diff)
Added an overload for setting properties without a locale
Diffstat (limited to 'Mono.Addins.Setup')
-rw-r--r--Mono.Addins.Setup/Mono.Addins.Setup/AddinPropertyCollection.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/Mono.Addins.Setup/Mono.Addins.Setup/AddinPropertyCollection.cs b/Mono.Addins.Setup/Mono.Addins.Setup/AddinPropertyCollection.cs
index 800460d..d4b9dee 100644
--- a/Mono.Addins.Setup/Mono.Addins.Setup/AddinPropertyCollection.cs
+++ b/Mono.Addins.Setup/Mono.Addins.Setup/AddinPropertyCollection.cs
@@ -94,6 +94,11 @@ namespace Mono.Addins.Setup
return loc;
}
+ public void SetPropertyValue (string name, string value)
+ {
+ SetPropertyValue (name, value, null);
+ }
+
public void SetPropertyValue (string name, string locale, string value)
{
if (string.IsNullOrEmpty (name))