summaryrefslogtreecommitdiff
path: root/docview/components/richtext/RichTextView.pas
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2011-08-11 16:34:43 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2011-08-11 16:34:43 +0200
commita12affe6e6f7c14303dd8e4c8eec834fe73a5be2 (patch)
treee231dcb10ddc39b1baedf46e28ff100990e6c5f5 /docview/components/richtext/RichTextView.pas
parent31dc8b6a853e7334be9431496f94d290d7173e5d (diff)
downloadfpGUI-a12affe6e6f7c14303dd8e4c8eec834fe73a5be2.tar.xz
minor code formatting, improved code comments
Diffstat (limited to 'docview/components/richtext/RichTextView.pas')
-rw-r--r--docview/components/richtext/RichTextView.pas5
1 files changed, 0 insertions, 5 deletions
diff --git a/docview/components/richtext/RichTextView.pas b/docview/components/richtext/RichTextView.pas
index fae04180..7440b884 100644
--- a/docview/components/richtext/RichTextView.pas
+++ b/docview/components/richtext/RichTextView.pas
@@ -673,16 +673,13 @@ begin
ProfileEvent('TRichTextView.HandlePaint >>>');
Canvas.ClearClipRect;
DrawBorder;
-ProfileEvent('DEBUG: TRichTextView.HandlePaint 1');
DrawRect := GetDrawRect;
Canvas.Color := BackgroundColor;
Canvas.FillRectangle(DrawRect);
-ProfileEvent('DEBUG: TRichTextView.HandlePaint 2');
TextRect := GetTextAreaRect;
Canvas.SetClipRect(TextRect);
-ProfileEvent('DEBUG: TRichTextView.HandlePaint 3');
if InDesigner then
begin
Canvas.TextColor := clInactiveWgFrame;
@@ -701,13 +698,11 @@ ProfileEvent('DEBUG: TRichTextView.HandlePaint 3');
if Length(FText) = 0 then
exit; // no need to paint anything further.
-ProfileEvent('DEBUG: TRichTextView.HandlePaint 4');
Assert(FLayout <> nil, 'FLayout may not be nil at this point!');
if not Debug then
Draw( 0, FLayout.FNumLines )
else
Canvas.DrawText(8, 8, GetTextAreaWidth, GetTextAreaHeight{1000}, FText, [txtLeft, txtTop, txtWrap]);
-ProfileEvent('DEBUG: TRichTextView.HandlePaint 5');
Canvas.ClearClipRect;
if FHScrollbar.Visible and FVScrollbar.Visible then