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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Stedfast <jeff@xamarin.com>2012-01-06 01:13:38 +0400
committerJeffrey Stedfast <jeff@xamarin.com>2012-01-06 01:13:38 +0400
commit1226ae359786fe1b62798ced7e073abe258c3609 (patch)
treec4455f1da591385a87368f11715de30df6a493f4
parenta851034fb17c21fa903ce20ff4add6b606d6cfa9 (diff)
[MacDev] Renamed the ReleaseOutlets() method to ReleaseDesignerOutlets().
-rw-r--r--main/src/addins/MonoDevelop.MacDev/ObjCIntegration/CSharpCodeCodebehind.cs2
-rw-r--r--main/src/addins/MonoDevelop.MacDev/ObjCIntegration/CSharpCodeCodebehind.tt4
2 files changed, 3 insertions, 3 deletions
diff --git a/main/src/addins/MonoDevelop.MacDev/ObjCIntegration/CSharpCodeCodebehind.cs b/main/src/addins/MonoDevelop.MacDev/ObjCIntegration/CSharpCodeCodebehind.cs
index 2b93e1c522..7c6c426ce4 100644
--- a/main/src/addins/MonoDevelop.MacDev/ObjCIntegration/CSharpCodeCodebehind.cs
+++ b/main/src/addins/MonoDevelop.MacDev/ObjCIntegration/CSharpCodeCodebehind.cs
@@ -258,7 +258,7 @@ foreach (var nso in Types) {
#line hidden
#line 43 "/Users/fejj/src/xamarin/monodevelop/main/src/addins/MonoDevelop.MacDev/ObjCIntegration/CSharpCodeCodebehind.tt"
- this.Write("\t\t\n\t\tvoid ReleaseOutlets ()\n\t\t{\n");
+ this.Write("\t\t\n\t\tvoid ReleaseDesignerOutlets ()\n\t\t{\n");
#line default
#line hidden
diff --git a/main/src/addins/MonoDevelop.MacDev/ObjCIntegration/CSharpCodeCodebehind.tt b/main/src/addins/MonoDevelop.MacDev/ObjCIntegration/CSharpCodeCodebehind.tt
index a94c4d428b..76b4d29599 100644
--- a/main/src/addins/MonoDevelop.MacDev/ObjCIntegration/CSharpCodeCodebehind.tt
+++ b/main/src/addins/MonoDevelop.MacDev/ObjCIntegration/CSharpCodeCodebehind.tt
@@ -40,7 +40,7 @@ foreach (var nso in Types) {
partial void <#=EscapeIdentifier (action.CliName)#> (<# AddParameters (action); #>);
<# }#>
- void ReleaseOutlets ()
+ void ReleaseDesignerOutlets ()
{
<# bool firstOutlet = true;
foreach (var outlet in nso.Outlets.Where (o => o.IsDesigner)) {
@@ -69,4 +69,4 @@ void AddParameters (IBAction action)
Write (EscapeIdentifier (p.Name));
}
}
-#> \ No newline at end of file
+#>