diff --git a/Src/LexText/LexTextDll/HelpTopicPaths.resx b/Src/LexText/LexTextDll/HelpTopicPaths.resx
index 663ee8245e..c9d6dd086d 100644
--- a/Src/LexText/LexTextDll/HelpTopicPaths.resx
+++ b/Src/LexText/LexTextDll/HelpTopicPaths.resx
@@ -2739,6 +2739,10 @@
/User_Interface/Menus/Tools/Configure_Dictionary/Configure_Dictionary.htm
Configure Dictionary Dialog box.
+
+ /User_Interface/Menus/Tools/Configure_Classified_Dictionary/Configure_Classified_Dictionary_View_dlgbox.htm
+ Configure Classified Dictionary Dialog box.
+
/User_Interface/Menus/Tools/Configure_Dictionary/Manage_Dictionary_Views.htm
Configure Dictionary Dialog box.
diff --git a/Src/xWorks/DictionaryConfigurationListener.cs b/Src/xWorks/DictionaryConfigurationListener.cs
index 5cd37ce7e3..9a04dc3ed8 100644
--- a/Src/xWorks/DictionaryConfigurationListener.cs
+++ b/Src/xWorks/DictionaryConfigurationListener.cs
@@ -93,8 +93,15 @@ public virtual bool OnDisplayConfigureXmlDocView(object commandObject,
internal static string GetConfigDialogHelpTopic(PropertyTable propertyTable)
{
- return GetDictionaryConfigurationBaseType(propertyTable) == ReversalType
- ? "khtpConfigureReversalIndex" : "khtpConfigureDictionary";
+ switch (GetDictionaryConfigurationBaseType(propertyTable))
+ {
+ case ReversalType:
+ return "khtpConfigureReversalIndex";
+ case ClassifiedType:
+ return "khtpConfigureClassifiedDictionary";
+ default:
+ return "khtpConfigureDictionary";
+ }
}
///