mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-08 06:18:21 +02:00
jcf: fix char case in unit names
git-svn-id: trunk@22248 -
This commit is contained in:
parent
05b4a3cd3e
commit
1f597e595b
@ -203,9 +203,9 @@
|
||||
<UsageCount Value="40"/>
|
||||
</Unit19>
|
||||
<Unit20>
|
||||
<Filename Value="../../Settings/JCFSettings.pas"/>
|
||||
<Filename Value="../../Settings/JcfSettings.pas"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
<UnitName Value="JCFSettings"/>
|
||||
<UnitName Value="JcfSettings"/>
|
||||
<CursorPos X="19" Y="43"/>
|
||||
<TopLine Value="25"/>
|
||||
<EditorIndex Value="1"/>
|
||||
@ -576,9 +576,9 @@
|
||||
<UsageCount Value="40"/>
|
||||
</Unit64>
|
||||
<Unit65>
|
||||
<Filename Value="../../Settings/JCFSetBase.pas"/>
|
||||
<Filename Value="../../Settings/JcfSetBase.pas"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
<UnitName Value="JCFSetBase"/>
|
||||
<UnitName Value="JcfSetBase"/>
|
||||
<CursorPos X="66" Y="38"/>
|
||||
<TopLine Value="34"/>
|
||||
<UsageCount Value="40"/>
|
||||
@ -688,9 +688,9 @@
|
||||
<UsageCount Value="39"/>
|
||||
</Unit78>
|
||||
<Unit79>
|
||||
<Filename Value="../../Utils/JCFHelp.pas"/>
|
||||
<Filename Value="../../Utils/JcfHelp.pas"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
<UnitName Value="JCFHelp"/>
|
||||
<UnitName Value="JcfHelp"/>
|
||||
<CursorPos X="52" Y="75"/>
|
||||
<TopLine Value="58"/>
|
||||
<UsageCount Value="39"/>
|
||||
|
@ -401,12 +401,12 @@
|
||||
<UnitName Value="JcfRegistrySettings"/>
|
||||
</Item94>
|
||||
<Item95>
|
||||
<Filename Value="..\..\Settings\JCFSetBase.pas"/>
|
||||
<UnitName Value="JCFSetBase"/>
|
||||
<Filename Value="..\..\Settings\JcfSetBase.pas"/>
|
||||
<UnitName Value="JcfSetBase"/>
|
||||
</Item95>
|
||||
<Item96>
|
||||
<Filename Value="..\..\Settings\JCFSettings.pas"/>
|
||||
<UnitName Value="JCFSettings"/>
|
||||
<Filename Value="..\..\Settings\JcfSettings.pas"/>
|
||||
<UnitName Value="JcfSettings"/>
|
||||
</Item96>
|
||||
<Item97>
|
||||
<Filename Value="..\..\Settings\SetAlign.pas"/>
|
||||
@ -493,8 +493,8 @@
|
||||
<UnitName Value="JcfFontSetFunctions"/>
|
||||
</Item117>
|
||||
<Item118>
|
||||
<Filename Value="..\..\Utils\JCFHelp.pas"/>
|
||||
<UnitName Value="JCFHelp"/>
|
||||
<Filename Value="..\..\Utils\JcfHelp.pas"/>
|
||||
<UnitName Value="JcfHelp"/>
|
||||
</Item118>
|
||||
<Item119>
|
||||
<Filename Value="..\..\Utils\JcfLog.pas"/>
|
||||
|
@ -29,11 +29,11 @@ uses
|
||||
VisitSetNesting, VisitSetXY, VisitStripEmptySpace, WarnAssignToFunctionName,
|
||||
WarnCaseNoElse, WarnDestroy, WarnEmptyBlock, Warning, WarnRealType,
|
||||
WarnUnusedParam, Converter, ConvertTypes, EditorConverter, FileConverter,
|
||||
JcfRegistrySettings, JCFSetBase, JCFSettings, SetAlign, SetAsm, SetCaps,
|
||||
JcfRegistrySettings, JcfSetBase, JcfSettings, SetAlign, SetAsm, SetCaps,
|
||||
SetClarify, SetComments, SetIndent, SetObfuscate, SetPreProcessor,
|
||||
SetReplace, SetReturns, SetSpaces, SettingsTypes, SetTransform, SetUses,
|
||||
SetWordList, SettingsStream, fJcfErrorDisplay, Delay, fileutils, IntList,
|
||||
JcfFontSetFunctions, JCFHelp, JcfLog, JcfMiscFunctions, fAbout,
|
||||
JcfFontSetFunctions, JcfHelp, JcfLog, JcfMiscFunctions, fAbout,
|
||||
JcfVersionConsts, LazarusPackageIntf;
|
||||
|
||||
implementation
|
||||
|
@ -39,7 +39,7 @@ uses
|
||||
SysUtils, Classes, Controls, Forms, Dialogs, StdCtrls, ComCtrls, Menus,
|
||||
ActnList, StdActns, ToolWin, ImgList, ShellAPI,
|
||||
{ local }
|
||||
FileConverter, JCFSettings, ConvertTypes,
|
||||
FileConverter, JcfSettings, ConvertTypes,
|
||||
frBasicSettings, JvMRUManager, JvFormPlacement,
|
||||
JvMemo, frDrop, frmBaseSettingsFrame, JvComponent, JvExStdCtrls,
|
||||
JvComponentBase;
|
||||
@ -139,7 +139,7 @@ uses
|
||||
JclFileUtils,
|
||||
{ local }
|
||||
fAbout, fAllSettings, fRegistrySettings,
|
||||
SettingsStream, JCFHelp, JcfRegistrySettings, JcfFontSetFunctions;
|
||||
SettingsStream, JcfHelp, JcfRegistrySettings, JcfFontSetFunctions;
|
||||
|
||||
function OkDialog(const psMsg: string): boolean;
|
||||
begin
|
||||
|
@ -164,7 +164,7 @@ uses
|
||||
ClipBrd,
|
||||
{ local }
|
||||
JcfStringUtils,
|
||||
JCFHelp, fAbout, fRegistrySettings, fAllSettings, JcfFontSetFunctions;
|
||||
JcfHelp, fAbout, fRegistrySettings, fAllSettings, JcfFontSetFunctions;
|
||||
|
||||
{$ifdef FPC}
|
||||
{$R *.lfm}
|
||||
|
@ -94,7 +94,7 @@ uses
|
||||
SysUtils, Forms,
|
||||
{ local }
|
||||
PreProcessorExpressionTokenise, PreProcessorExpressionParser,
|
||||
ParseError, JCFSettings;
|
||||
ParseError, JcfSettings;
|
||||
|
||||
procedure RemoveConditionalCompilation(const pcTokens: TSourceTokenList);
|
||||
var
|
||||
|
@ -93,7 +93,7 @@ implementation
|
||||
{$endif}
|
||||
|
||||
uses
|
||||
SourceToken, Tokens, JCFHelp, JcfFontSetFunctions
|
||||
SourceToken, Tokens, JcfHelp, JcfFontSetFunctions
|
||||
{$ifdef fpc}, LResources{$endif};
|
||||
|
||||
procedure ShowParseTree(const pcRoot: TParseTreeNode);
|
||||
|
@ -84,7 +84,7 @@ implementation
|
||||
uses
|
||||
{ local }
|
||||
JcfStringUtils,
|
||||
Tokens, SourceToken, TokenUtils, JCFSettings,
|
||||
Tokens, SourceToken, TokenUtils, JcfSettings,
|
||||
FormatFlags, SettingsTypes;
|
||||
|
||||
const
|
||||
|
@ -50,7 +50,7 @@ type
|
||||
|
||||
implementation
|
||||
|
||||
uses ParseTreeNode, SourceToken, TokenUtils, FormatFlags, JCFSettings;
|
||||
uses ParseTreeNode, SourceToken, TokenUtils, FormatFlags, JcfSettings;
|
||||
|
||||
constructor TWarning.Create;
|
||||
begin
|
||||
|
@ -23,7 +23,7 @@ See http://www.gnu.org/licenses/gpl.html
|
||||
------------------------------------------------------------------------------*)
|
||||
{*)}
|
||||
|
||||
unit JCFSetBase;
|
||||
unit JcfSetBase;
|
||||
|
||||
{ base class for a group of settings
|
||||
AFS 29 Dec 1999
|
||||
|
@ -23,7 +23,7 @@ See http://www.gnu.org/licenses/gpl.html
|
||||
------------------------------------------------------------------------------*)
|
||||
{*)}
|
||||
|
||||
unit JCFSettings;
|
||||
unit JcfSettings;
|
||||
|
||||
{ this is the settings on how to parse. As of 2.0 this is always from a file
|
||||
The file name is stored in registry
|
||||
@ -138,7 +138,7 @@ uses
|
||||
{$IFNDEF FPC}Windows,{$ENDIF} SysUtils, Dialogs,
|
||||
{ local }
|
||||
JcfStringUtils,
|
||||
JCFSetBase,
|
||||
JcfSetBase,
|
||||
JcfRegistrySettings;
|
||||
|
||||
|
||||
|
@ -33,7 +33,7 @@ unit SetAlign;
|
||||
|
||||
interface
|
||||
|
||||
uses JCFSetBase, SettingsStream;
|
||||
uses JcfSetBase, SettingsStream;
|
||||
|
||||
type
|
||||
|
||||
|
@ -35,7 +35,7 @@ interface
|
||||
|
||||
uses
|
||||
{ delphi }Classes,
|
||||
{ local }JCFSetBase, SettingsStream;
|
||||
{ local }JcfSetBase, SettingsStream;
|
||||
|
||||
type
|
||||
|
||||
|
@ -29,7 +29,7 @@ See http://www.gnu.org/licenses/gpl.html
|
||||
interface
|
||||
|
||||
uses
|
||||
JCFSetBase,
|
||||
JcfSetBase,
|
||||
SettingsTypes, SettingsStream;
|
||||
|
||||
type
|
||||
|
@ -33,7 +33,7 @@ unit SetCaps;
|
||||
|
||||
interface
|
||||
|
||||
uses JCFSetBase, SettingsTypes, SettingsStream;
|
||||
uses JcfSetBase, SettingsTypes, SettingsStream;
|
||||
|
||||
type
|
||||
|
||||
|
@ -34,7 +34,7 @@ interface
|
||||
|
||||
uses
|
||||
Classes,
|
||||
JCFSetBase, SettingsStream;
|
||||
JcfSetBase, SettingsStream;
|
||||
|
||||
type
|
||||
// once-offs can be run, not run, or can be the only thing run
|
||||
|
@ -33,7 +33,7 @@ See http://www.gnu.org/licenses/gpl.html
|
||||
|
||||
interface
|
||||
|
||||
uses JCFSetBase, SettingsStream;
|
||||
uses JcfSetBase, SettingsStream;
|
||||
|
||||
type
|
||||
|
||||
|
@ -35,7 +35,7 @@ interface
|
||||
|
||||
uses
|
||||
{ local }
|
||||
JCFSetBase, SettingsStream;
|
||||
JcfSetBase, SettingsStream;
|
||||
|
||||
type
|
||||
|
||||
|
@ -29,7 +29,7 @@ unit SetIndent;
|
||||
|
||||
interface
|
||||
|
||||
uses JCFSetBase, SettingsStream;
|
||||
uses JcfSetBase, SettingsStream;
|
||||
|
||||
type
|
||||
|
||||
|
@ -34,7 +34,7 @@ unit SetObfuscate;
|
||||
interface
|
||||
|
||||
uses
|
||||
{ local }JCFSetBase, SettingsTypes, SettingsStream;
|
||||
{ local }JcfSetBase, SettingsTypes, SettingsStream;
|
||||
|
||||
type
|
||||
|
||||
|
@ -36,7 +36,7 @@ uses
|
||||
{ delphi }
|
||||
Classes,
|
||||
{ local }
|
||||
JCFSetBase, SettingsStream;
|
||||
JcfSetBase, SettingsStream;
|
||||
|
||||
type
|
||||
TSetPreProcessor = class(TSetBase)
|
||||
|
@ -37,7 +37,7 @@ uses
|
||||
{ delphi }
|
||||
Classes,
|
||||
{ local }
|
||||
JCFSetBase, SettingsStream;
|
||||
JcfSetBase, SettingsStream;
|
||||
|
||||
type
|
||||
|
||||
|
@ -31,7 +31,7 @@ See http://www.gnu.org/licenses/gpl.html
|
||||
|
||||
interface
|
||||
|
||||
uses JCFSetBase, SettingsTypes, SettingsStream;
|
||||
uses JcfSetBase, SettingsTypes, SettingsStream;
|
||||
|
||||
type
|
||||
{ rebreak lines has three modes:
|
||||
|
@ -31,7 +31,7 @@ unit SetSpaces;
|
||||
|
||||
interface
|
||||
|
||||
uses JCFSetBase, SettingsStream, SettingsTypes;
|
||||
uses JcfSetBase, SettingsStream, SettingsTypes;
|
||||
|
||||
type
|
||||
|
||||
|
@ -33,7 +33,7 @@ unit SetTransform;
|
||||
|
||||
interface
|
||||
|
||||
uses JCFSetBase, SettingsTypes, SettingsStream;
|
||||
uses JcfSetBase, SettingsTypes, SettingsStream;
|
||||
|
||||
type
|
||||
TUsesSortOrder = (eAlpha, eReverseAlpha, eShortToLong, eLongToShort);
|
||||
|
@ -39,7 +39,7 @@ interface
|
||||
|
||||
uses
|
||||
{ delphi }Classes,
|
||||
{ local }JCFSetBase, SettingsStream;
|
||||
{ local }JcfSetBase, SettingsStream;
|
||||
|
||||
type
|
||||
|
||||
|
@ -36,7 +36,7 @@ interface
|
||||
|
||||
uses
|
||||
{ delphi }Classes,
|
||||
{ local }JCFSetBase, SettingsStream;
|
||||
{ local }JcfSetBase, SettingsStream;
|
||||
|
||||
type
|
||||
|
||||
|
@ -155,7 +155,7 @@ begin
|
||||
fReg.WriteString(fsSection, psTagName, Float2Str(pdValue));
|
||||
end;
|
||||
|
||||
// method from JCFSetBase
|
||||
// method from JcfSetBase
|
||||
procedure TSettingsRegistryOutput.Write(const psTagName: string;
|
||||
const pcValue: TStrings);
|
||||
var
|
||||
|
@ -59,7 +59,7 @@ implementation
|
||||
{$R *.dfm}
|
||||
{$endif}
|
||||
|
||||
uses JcfSettings, JCFHelp, SetClarify;
|
||||
uses JcfSettings, JcfHelp, SetClarify;
|
||||
|
||||
constructor TfClarify.Create(AOwner: TComponent);
|
||||
begin
|
||||
|
@ -69,7 +69,7 @@ const
|
||||
|
||||
implementation
|
||||
|
||||
uses JCFHelp;
|
||||
uses JcfHelp;
|
||||
|
||||
{$ifdef FPC}
|
||||
{$R *.lfm}
|
||||
|
@ -70,7 +70,7 @@ uses
|
||||
LResources, LCLIntf,
|
||||
{$endif}
|
||||
{ local }
|
||||
JcfVersionConsts, JCFHelp, JcfFontSetFunctions, JcfStringUtils;
|
||||
JcfVersionConsts, JcfHelp, JcfFontSetFunctions, JcfStringUtils;
|
||||
|
||||
{$ifdef fpc}
|
||||
procedure ShowURL(const ps: string);
|
||||
|
@ -38,7 +38,7 @@ uses
|
||||
SysUtils, Classes, Controls, Forms,
|
||||
StdCtrls, Buttons, ExtCtrls, ComCtrls, ShellAPI, Dialogs,
|
||||
{ local }
|
||||
JCFSettings, frmBaseSettingsFrame;
|
||||
JcfSettings, frmBaseSettingsFrame;
|
||||
|
||||
type
|
||||
TFormAllSettings = class(TForm)
|
||||
@ -84,7 +84,7 @@ implementation
|
||||
|
||||
uses
|
||||
Windows,
|
||||
JcfRegistrySettings, JcfFontSetFunctions, JCFHelp,
|
||||
JcfRegistrySettings, JcfFontSetFunctions, JcfHelp,
|
||||
{ contained frames }
|
||||
frFiles, frObfuscateSettings,
|
||||
frClarify, frClarifySpaces, frClarifyIndent,
|
||||
|
@ -114,7 +114,7 @@ uses
|
||||
{ jcl }
|
||||
JclSysInfo,
|
||||
{ local }
|
||||
ConvertTypes, JcfRegistrySettings, JcfSettings, JCFHelp, JcfFontSetFunctions;
|
||||
ConvertTypes, JcfRegistrySettings, JcfSettings, JcfHelp, JcfFontSetFunctions;
|
||||
|
||||
{$ifdef FPC}
|
||||
{$R *.lfm}
|
||||
|
@ -1,4 +1,4 @@
|
||||
unit JCFHelp;
|
||||
unit JcfHelp;
|
||||
|
||||
{(*}
|
||||
(*------------------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user