diff options
-rw-r--r-- | docview/src/IPFEscapeCodes.pas | 3 | ||||
-rw-r--r-- | docview/src/dvconstants.pas | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/docview/src/IPFEscapeCodes.pas b/docview/src/IPFEscapeCodes.pas index 41e743d4..5b308f80 100644 --- a/docview/src/IPFEscapeCodes.pas +++ b/docview/src/IPFEscapeCodes.pas @@ -9,6 +9,9 @@ Unit IPFEscapeCodes; Interface +uses + Classes; + // List of IPF escape codes. Not complete! Many are just used // as magic numbers in HelpTopic.pas diff --git a/docview/src/dvconstants.pas b/docview/src/dvconstants.pas index 626e0840..8dfd664b 100644 --- a/docview/src/dvconstants.pas +++ b/docview/src/dvconstants.pas @@ -4,6 +4,9 @@ unit dvConstants; interface +uses + Classes; + const { DO NOT LOCALIZE } HelpPathEnvironmentVar = 'HELP'; @@ -24,7 +27,7 @@ resourcestring rsDVNoFile = 'No file'; rsDVOpenHelpFile = 'Open Help File'; rsDVHelpFiles = 'Help Files'; - rsDVNoMatchesFound = '(No matches found for ''%s'')'; + rsDVNoMatchesFound = '(No matches found for <%s>)'; rsDVSearchSyntaxError = 'Error in search syntax: '; rsDVSearchFoundMsg = 'Found %d matches for '; rsDVCouldNotOpen = 'Could not open <%s>'; |