mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 14:39:06 +02:00
LazUtils: Match character case of unit name LazUTF16 with LazUTF8.
git-svn-id: trunk@52528 -
This commit is contained in:
parent
7f8864e5b6
commit
f34ea1f4c7
@ -15,7 +15,7 @@
|
|||||||
Currently this unit includes only UTF8LowerCaseViaTables which is based on a
|
Currently this unit includes only UTF8LowerCaseViaTables which is based on a
|
||||||
UTF-16 table, but it might be extended to include various UTF-16 routines.
|
UTF-16 table, but it might be extended to include various UTF-16 routines.
|
||||||
}
|
}
|
||||||
unit lazutf16;
|
unit LazUTF16;
|
||||||
|
|
||||||
{$mode objfpc}{$H+}
|
{$mode objfpc}{$H+}
|
||||||
|
|
||||||
|
@ -135,7 +135,7 @@
|
|||||||
</Item29>
|
</Item29>
|
||||||
<Item30>
|
<Item30>
|
||||||
<Filename Value="lazutf16.pas"/>
|
<Filename Value="lazutf16.pas"/>
|
||||||
<UnitName Value="lazutf16"/>
|
<UnitName Value="lazUTF16"/>
|
||||||
</Item30>
|
</Item30>
|
||||||
<Item31>
|
<Item31>
|
||||||
<Filename Value="lazutf8sysutils.pas"/>
|
<Filename Value="lazutf8sysutils.pas"/>
|
||||||
|
@ -8,16 +8,16 @@ unit LazUtils;
|
|||||||
interface
|
interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
Laz2_DOM, Laz2_XMLCfg, laz2_XMLRead, laz2_xmlutils, laz2_XMLWrite, Laz_DOM,
|
Laz2_DOM, Laz2_XMLCfg, laz2_XMLRead, laz2_xmlutils, laz2_XMLWrite, Laz_DOM,
|
||||||
Laz_XMLCfg, Laz_XMLRead, Laz_XMLStreaming, Laz_XMLWrite, LazFileUtils,
|
Laz_XMLCfg, Laz_XMLRead, Laz_XMLStreaming, Laz_XMLWrite, LazFileUtils,
|
||||||
LazFileCache, LazUTF8, LazDbgLog, PasWString, FileUtil, LazUTF8Classes,
|
LazFileCache, LazUTF8, LazDbgLog, PasWString, FileUtil, LazUTF8Classes,
|
||||||
Masks, LazUtilsStrConsts, LConvEncoding, lazutf16, LazUTF8SysUtils,
|
Masks, LazUtilsStrConsts, LConvEncoding, LazUTF16, LazUTF8SysUtils,
|
||||||
LazMethodList, AvgLvlTree, LazLogger, LazFreeType, TTCache, TTCalc, TTCMap,
|
LazMethodList, AvgLvlTree, LazLogger, LazFreeType, TTCache, TTCalc, TTCMap,
|
||||||
TTDebug, TTError, TTFile, TTGLoad, TTInterp, TTLoad, TTMemory, TTObjs,
|
TTDebug, TTError, TTFile, TTGLoad, TTInterp, TTLoad, TTMemory, TTObjs,
|
||||||
TTProfile, TTRASTER, TTTables, TTTypes, EasyLazFreeType, LazLoggerBase,
|
TTProfile, TTRASTER, TTTables, TTTypes, EasyLazFreeType, LazLoggerBase,
|
||||||
LazLoggerDummy, LazClasses, LazFreeTypeFontCollection, LazConfigStorage,
|
LazLoggerDummy, LazClasses, LazFreeTypeFontCollection, LazConfigStorage,
|
||||||
UTF8Process, laz2_xpath, LazLoggerProfiling, FPCAdds, LazUtilities,
|
UTF8Process, laz2_xpath, LazLoggerProfiling, FPCAdds, LazUtilities,
|
||||||
lazfglhash, lcsvutils, lazCollections, LazListClasses,
|
lazfglhash, lcsvutils, lazCollections, LazListClasses,
|
||||||
LazFreeTypeFPImageDrawer, LookupStringList, LazarusPackageIntf;
|
LazFreeTypeFPImageDrawer, LookupStringList, LazarusPackageIntf;
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
@ -3,7 +3,7 @@ program TestUnicode;
|
|||||||
{$mode objfpc}{$H+}
|
{$mode objfpc}{$H+}
|
||||||
|
|
||||||
uses
|
uses
|
||||||
sysutils, lazutf8, lazutf16;
|
sysutils, LazUTF8, LazUTF16;
|
||||||
|
|
||||||
procedure WriteStringHex(Str: utf8string);
|
procedure WriteStringHex(Str: utf8string);
|
||||||
var
|
var
|
||||||
|
@ -5,7 +5,7 @@ unit TestUnicode;
|
|||||||
interface
|
interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
Classes, SysUtils, fpcunit, testglobals, LazUTF8, lazutf16, LazLogger;
|
Classes, SysUtils, fpcunit, testglobals, LazUTF8, LazUTF16, LazLogger;
|
||||||
|
|
||||||
type
|
type
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user