summaryrefslogtreecommitdiff
path: root/src/HelpTopic.pas
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graemeg@gmail.com>2009-10-01 01:07:43 +0200
committerGraeme Geldenhuys <graemeg@gmail.com>2009-10-01 01:07:43 +0200
commit0f482cbcedded98477167503b5d8fd28dd2b3b9c (patch)
treecc302c2f91b3ed5d5ca40324778d7aa82b4991d2 /src/HelpTopic.pas
parent927bd8d465cc780d3c710e28239f872f107de3da (diff)
downloadfpGUI-0f482cbcedded98477167503b5d8fd28dd2b3b9c.tar.xz
Temporary commented markup tags in the help text returned.
Signed-off-by: Graeme Geldenhuys <graemeg@gmail.com>
Diffstat (limited to 'src/HelpTopic.pas')
-rw-r--r--src/HelpTopic.pas10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/HelpTopic.pas b/src/HelpTopic.pas
index 3f29bf69..a7dabb76 100644
--- a/src/HelpTopic.pas
+++ b/src/HelpTopic.pas
@@ -137,7 +137,7 @@ uses
ACLUtility, ACLStringUtility, ACLPCharUtility,
ACLString, ACLProfile,
}
- IPFEscapeCodes;
+ IPFEscapeCodes, nvUtilities;
const
IPFStyleTags : array [ 0..6 ] of string =
@@ -716,6 +716,7 @@ begin
for SlotIndex := 0 to _NumSlots - 1 do
begin
+ProfileEvent('Processing SlotIndex ' + IntToStr(SlotIndex));
Spacing:= true;
Slot := THelpTopicSlot(_Slots[ SlotIndex ]);
@@ -731,6 +732,7 @@ begin
if LocalDictIndex < Slot.LocalDictSize then
begin
+ProfileEvent('Normal word lookup');
// Normal word lookup
GlobalDictIndex := Slot.pLocalDictionary^[ LocalDictIndex ];
@@ -742,7 +744,9 @@ begin
Word:= SubstituteAngleBrackets( Word );
if HighlightWords^[ GlobalDictIndex ] > 0 then
- StringToAdd := '<red>' + Word + '<black>'
+// graemeg: temp change
+// StringToAdd := '<red>' + Word + '<black>'
+ StringToAdd := Word
else
StringToAdd := Word;
@@ -754,6 +758,7 @@ begin
end
else
begin
+ProfileEvent('Special code');
// special code
DebugString := '[' + IntToHex( LocalDictIndex, 2 );
case LocalDictIndex of
@@ -829,6 +834,7 @@ begin
end; // for slotindex = ...
end;
+ProfileEvent(S);
Text := PChar(S);
end;