From 1e3683325ac414ee1ed3d7079137f4fa1cc949d3 Mon Sep 17 00:00:00 2001 From: juha Date: Wed, 3 Nov 2010 20:46:44 +0000 Subject: [PATCH] Converter: minor comment changes. git-svn-id: trunk@28064 - --- converter/convcodetool.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/converter/convcodetool.pas b/converter/convcodetool.pas index 175c0dbfbf..fe5d4a5f66 100644 --- a/converter/convcodetool.pas +++ b/converter/convcodetool.pas @@ -191,7 +191,7 @@ begin fSrcCache.EndUpdate; end; if fSettings.Target=ctLazarus then begin - // One way conversion -> remove, rename and comment out units. + // One way conversion -> remove and rename units. if not RemoveUnits then exit; if not RenameUnits then exit; end; @@ -199,7 +199,7 @@ begin // Support Delphi. Add IFDEF blocks for units. if not AddDelphiAndLCLSections then exit; end - else // ctLazarus or ctLazarusWin -> comment units if needed. + else // [ctLazarus, ctLazarusWin] -> comment out units if needed. if not CommentOutUnits then exit; if not fCodeTool.FixUsedUnitCase(fSrcCache) then exit; if not fSrcCache.Apply then exit;