diff --git a/Source/Bind/Structures/Delegate.cs b/Source/Bind/Structures/Delegate.cs index 56764266..287bae3f 100644 --- a/Source/Bind/Structures/Delegate.cs +++ b/Source/Bind/Structures/Delegate.cs @@ -125,7 +125,7 @@ namespace Bind.Structures public string Category { get { return _category; } - set { _category = EnumProcessor.TranslateEnumName(value); } + set { _category = value; } } #endregion diff --git a/Source/Bind/Structures/Type.cs b/Source/Bind/Structures/Type.cs index 979eb386..fc7c92cb 100644 --- a/Source/Bind/Structures/Type.cs +++ b/Source/Bind/Structures/Type.cs @@ -356,7 +356,7 @@ namespace Bind.Structures Enum @enum; string s; - + category = EnumProcessor.TranslateEnumName(category); // Try to find out if it is an enum. If the type exists in the normal GLEnums list, use this. // Otherwise, try to find it in the aux enums list. If it exists in neither, it is not an enum.