Browse Source

fcl-passrc: fixed hint of unimplemented

git-svn-id: trunk@37195 -
Mattias Gaertner 8 years ago
parent
commit
0fae0cb389

+ 1 - 1
packages/fcl-passrc/src/pasresolveeval.pas

@@ -204,7 +204,7 @@ resourcestring
   sFoundCallCandidateX = 'Found call candidate %s';
   sFoundCallCandidateX = 'Found call candidate %s';
   sSymbolXIsNotPortable = 'Symbol "%s" is not portable';
   sSymbolXIsNotPortable = 'Symbol "%s" is not portable';
   sSymbolXIsExperimental = 'Symbol "%s" is experimental';
   sSymbolXIsExperimental = 'Symbol "%s" is experimental';
-  sSymbolXIsNotImplemented = 'Symbol "%s" is implemented';
+  sSymbolXIsNotImplemented = 'Symbol "%s" is not implemented';
   sSymbolXBelongsToALibrary = 'Symbol "%s" belongs to a library';
   sSymbolXBelongsToALibrary = 'Symbol "%s" belongs to a library';
   sSymbolXIsDeprecated = 'Symbol "%s" is deprecated';
   sSymbolXIsDeprecated = 'Symbol "%s" is deprecated';
   sSymbolXIsDeprecatedY = 'Symbol "%s" is deprecated: %s';
   sSymbolXIsDeprecatedY = 'Symbol "%s" is deprecated: %s';

+ 1 - 1
packages/fcl-passrc/tests/tcresolver.pas

@@ -10053,7 +10053,7 @@ begin
   CheckResolverHint(mtWarning,nSymbolXBelongsToALibrary,'Symbol "TLibrary" belongs to a library');
   CheckResolverHint(mtWarning,nSymbolXBelongsToALibrary,'Symbol "TLibrary" belongs to a library');
   CheckResolverHint(mtWarning,nSymbolXIsNotPortable,'Symbol "TPlatform" is not portable');
   CheckResolverHint(mtWarning,nSymbolXIsNotPortable,'Symbol "TPlatform" is not portable');
   CheckResolverHint(mtWarning,nSymbolXIsExperimental,'Symbol "TExperimental" is experimental');
   CheckResolverHint(mtWarning,nSymbolXIsExperimental,'Symbol "TExperimental" is experimental');
-  CheckResolverHint(mtWarning,nSymbolXIsNotImplemented,'Symbol "TUnimplemented" is implemented');
+  CheckResolverHint(mtWarning,nSymbolXIsNotImplemented,'Symbol "TUnimplemented" is not implemented');
   CheckResolverUnexpectedHints;
   CheckResolverUnexpectedHints;
 end;
 end;