LCL/Help: Commenting TShowHelpResult enumeration items

This commit is contained in:
n7800 2025-06-03 22:01:29 +05:00 committed by Maxim Ganetsky
parent 72db9f09ff
commit 5e272bfe86

View File

@ -39,15 +39,15 @@ type
EHelpSystemException = class(Exception); EHelpSystemException = class(Exception);
TShowHelpResult = ( TShowHelpResult = (
shrNone, shrNone, // help error
shrSuccess, shrSuccess, // success
shrCancel, shrCancel, // operation was cancelled
shrDatabaseNotFound, shrDatabaseNotFound, // there is no help database installed for this topic
shrContextNotFound, // database found, but the element was not found shrContextNotFound, // a help database was found for this topic, but this topic was not found
shrViewerNotFound, // no viewer registered for this format shrViewerNotFound, // no viewer registered for this format
shrHelpNotFound, shrHelpNotFound, // no help found for this topic
shrViewerError, shrViewerError, // help viewer error
shrSelectorError shrSelectorError // help selector error
); );
TShowHelpResults = set of TShowHelpResult; TShowHelpResults = set of TShowHelpResult;