diff options
-rw-r--r-- | extras/tiopf/gui/tiRtfReport.pas | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/extras/tiopf/gui/tiRtfReport.pas b/extras/tiopf/gui/tiRtfReport.pas index 627d6d26..1041cd37 100644 --- a/extras/tiopf/gui/tiRtfReport.pas +++ b/extras/tiopf/gui/tiRtfReport.pas @@ -3102,8 +3102,9 @@ end; procedure TRtfColorList.Clear; begin - inherited; - Add(0, 0, 0); //Dummy color.. + inherited Clear; + { TODO -oGraeme : Not sure why this was here, so I removed it. 2009-11-10 } +// Add(0, 0, 0); //Dummy color.. end; function TRtfColorList.Add(ARed, AGreen, ABlue: integer): integer; @@ -4631,7 +4632,3 @@ end; end. - - - - |