|
@@ -1409,7 +1409,7 @@ end;
|
|
|
|
|
|
function TDictionary<TKey, TValue>.TPairEnumerator.GetCurrent: TMyPair;
|
|
function TDictionary<TKey, TValue>.TPairEnumerator.GetCurrent: TMyPair;
|
|
begin
|
|
begin
|
|
- Result:=DoGetCurrent;
|
|
|
|
|
|
+ Result:=DoGetCurrent();
|
|
end;
|
|
end;
|
|
|
|
|
|
function TDictionary<TKey, TValue>.TPairEnumerator.DoGetCurrent: TMyPair;
|
|
function TDictionary<TKey, TValue>.TPairEnumerator.DoGetCurrent: TMyPair;
|
|
@@ -1442,7 +1442,7 @@ end;
|
|
|
|
|
|
function TDictionary<TKey, TValue>.TKeyEnumerator.GetCurrent: TKey;
|
|
function TDictionary<TKey, TValue>.TKeyEnumerator.GetCurrent: TKey;
|
|
begin
|
|
begin
|
|
- Result:=DoGetCurrent;
|
|
|
|
|
|
+ Result:=DoGetCurrent();
|
|
end;
|
|
end;
|
|
|
|
|
|
function TDictionary<TKey, TValue>.TKeyEnumerator.DoGetCurrent: TKey;
|
|
function TDictionary<TKey, TValue>.TKeyEnumerator.DoGetCurrent: TKey;
|
|
@@ -1475,7 +1475,7 @@ end;
|
|
|
|
|
|
function TDictionary<TKey, TValue>.TValueEnumerator.GetCurrent: TValue;
|
|
function TDictionary<TKey, TValue>.TValueEnumerator.GetCurrent: TValue;
|
|
begin
|
|
begin
|
|
- Result:=DoGetCurrent;
|
|
|
|
|
|
+ Result:=DoGetCurrent();
|
|
end;
|
|
end;
|
|
|
|
|
|
function TDictionary<TKey, TValue>.TValueEnumerator.DoGetCurrent: TValue;
|
|
function TDictionary<TKey, TValue>.TValueEnumerator.DoGetCurrent: TValue;
|
|
@@ -1966,7 +1966,7 @@ end;
|
|
|
|
|
|
function TCustomInvertedListEnumerator<T>.GetCurrent: T;
|
|
function TCustomInvertedListEnumerator<T>.GetCurrent: T;
|
|
begin
|
|
begin
|
|
- Result:=DoGetCurrent;
|
|
|
|
|
|
+ Result:=DoGetCurrent();
|
|
end;
|
|
end;
|
|
|
|
|
|
constructor TCustomInvertedListEnumerator<T>.Create(AList: TCustomList<T>);
|
|
constructor TCustomInvertedListEnumerator<T>.Create(AList: TCustomList<T>);
|