15 lines
319 B
Ucode
15 lines
319 B
Ucode
class GUI2K4MultiColumnList extends GUIMultiColumnList;
|
|
|
|
delegate string OnGetSortString(GUIComponent Sender, int item, int column);
|
|
|
|
function string InternalGetSortString( int i )
|
|
{
|
|
return OnGetSortString(self, i, SortColumn);
|
|
}
|
|
|
|
defaultproperties
|
|
{
|
|
GetSortString=InternalGetSortString
|
|
SortColumn=0
|
|
}
|