Do not process the function category name (we to list the original name for documentation and extension checking). The processing is moved to the Type translation code.

This commit is contained in:
the_fiddler 2010-10-13 23:09:10 +00:00
parent 4d49dc26fc
commit 643b617362
2 changed files with 2 additions and 2 deletions

View file

@ -125,7 +125,7 @@ namespace Bind.Structures
public string Category
{
get { return _category; }
set { _category = EnumProcessor.TranslateEnumName(value); }
set { _category = value; }
}
#endregion

View file

@ -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.