Browse Source

* Changed user warnings to notes.

git-svn-id: trunk@9505 -
yury 17 years ago
parent
commit
9e9716f95e
1 changed files with 3 additions and 3 deletions
  1. 3 3
      rtl/objpas/fgl.pp

+ 3 - 3
rtl/objpas/fgl.pp

@@ -106,7 +106,7 @@ type
     function IndexOf(const Item: T): Integer;
     function IndexOf(const Item: T): Integer;
     procedure Insert(Index: Integer; const Item: T); {$ifdef CLASSESINLINE} inline; {$endif}
     procedure Insert(Index: Integer; const Item: T); {$ifdef CLASSESINLINE} inline; {$endif}
     function Last: T; {$ifdef CLASSESINLINE} inline; {$endif}
     function Last: T; {$ifdef CLASSESINLINE} inline; {$endif}
-    {$warning TODO: fix TFPGList<T>.Assign(TFPGList) to work somehow}
+    {$note TODO: fix TFPGList<T>.Assign(TFPGList) to work somehow}
     {procedure Assign(Source: TFPGList);}
     {procedure Assign(Source: TFPGList);}
     function Remove(const Item: T): Integer; {$ifdef CLASSESINLINE} inline; {$endif}
     function Remove(const Item: T): Integer; {$ifdef CLASSESINLINE} inline; {$endif}
     procedure Sort(Compare: TCompareFunc);
     procedure Sort(Compare: TCompareFunc);
@@ -608,10 +608,10 @@ end;
 function TFPGList.IndexOf(const Item: T): Integer;
 function TFPGList.IndexOf(const Item: T): Integer;
 begin
 begin
   Result := 0;
   Result := 0;
-  {$warning TODO: fix inlining to work! InternalItems[Result]^}
+  {$note TODO: fix inlining to work! InternalItems[Result]^}
   while (Result < FCount) and (PT(FList)[Result] <> Item) do
   while (Result < FCount) and (PT(FList)[Result] <> Item) do
     Inc(Result);
     Inc(Result);
-  {$warning TODO: Result := -1; does not compile }
+  {$note TODO: Result := -1; does not compile }
   if Result = FCount then
   if Result = FCount then
   begin
   begin
     Result := 0;
     Result := 0;