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