# HG changeset patch # User Claus Gittinger # Date 1559202244 -7200 # Node ID d8a85d6c38da8f42dfb9ee096d1aca03e51f83ac # Parent 6511c63804efe3b712f0e0fd9e7d400228676c9e #DOCUMENTATION by cg class: TabItem comment/format in: #activeHelpKey: diff -r 6511c63804ef -r d8a85d6c38da TabItem.st --- a/TabItem.st Thu May 30 09:43:18 2019 +0200 +++ b/TabItem.st Thu May 30 09:44:04 2019 +0200 @@ -836,13 +836,16 @@ "Modified (comment): / 30-05-2019 / 09:35:40 / Claus Gittinger" ! -activeHelpKey:aKey +activeHelpKey:aSymbolicKey + "the key used to ask the application for the tooltip text (via helpTextFor:)" + |key| - aKey size > 0 ifTrue:[key := aKey asSymbol]. + aSymbolicKey size > 0 ifTrue:[key := aSymbolicKey asSymbol]. activeHelpKey := key "Modified: / 06-09-2006 / 14:58:32 / cg" + "Modified (comment): / 30-05-2019 / 09:41:34 / Claus Gittinger" ! activeHelpText