Browse Source

Renamed GeneratedOperator to GenerateOperator.

pull/1/head
triton 12 years ago
parent
commit
4a222b0320
  1. 6
      src/Generator/Generators/CSharp/CSharpTextTemplate.cs

6
src/Generator/Generators/CSharp/CSharpTextTemplate.cs

@ -897,7 +897,7 @@ namespace CppSharp.Generators.CSharp
} }
else if (method.IsOperator) else if (method.IsOperator)
{ {
GeneratedOperator(method, @class); GenerateOperator(method, @class);
} }
else else
{ {
@ -912,7 +912,7 @@ namespace CppSharp.Generators.CSharp
} }
else if (method.IsOperator) else if (method.IsOperator)
{ {
GeneratedOperator(method, @class); GenerateOperator(method, @class);
} }
else else
{ {
@ -947,7 +947,7 @@ namespace CppSharp.Generators.CSharp
} }
} }
private void GeneratedOperator(Method method, Class @class) private void GenerateOperator(Method method, Class @class)
{ {
if (method.IsSynthetized) if (method.IsSynthetized)
{ {

Loading…
Cancel
Save