From 39eda1a4a50aef384e8b99c0a26e4f5eac3348a9 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Fri, 10 Sep 2004 09:34:37 +0000 Subject: [PATCH] Fixed: CompanyName did not return a value --- X2UtApp.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/X2UtApp.pas b/X2UtApp.pas index da4c787..4e34d9d 100644 --- a/X2UtApp.pas +++ b/X2UtApp.pas @@ -204,7 +204,7 @@ end; function TX2AppVersionStrings.GetValue; begin - if (Index > 0) and (Index < FValues.Count) then + if (Index > -1) and (Index < FValues.Count) then Result := FValues[Index] else Result := '';