mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-31 06:22:35 +02:00
* fixes for new widestring handling
This commit is contained in:
parent
431777f64d
commit
b1cbfd4c5c
@ -33,15 +33,13 @@ end;
|
||||
Procedure MakeWideString (Var P : PWideChar; W : WideString);
|
||||
|
||||
begin
|
||||
WideString(Pointer(P)):=W;
|
||||
UniqueString(WideString(P));
|
||||
P:=W;
|
||||
end;
|
||||
|
||||
Procedure CopyAsWideString (Var PDest : PWideChar; PSource : PWideChar);
|
||||
|
||||
begin
|
||||
WideString(Pointer(PDest)):=WideString(Pointer(PSource));
|
||||
UniqueString(WideString(PDest));
|
||||
PDest:=WideString(PSource);
|
||||
end;
|
||||
|
||||
{ ---------------------------------------------------------------------
|
||||
@ -711,7 +709,10 @@ end;
|
||||
{$endif HASVARIANT}
|
||||
{
|
||||
$Log$
|
||||
Revision 1.8 2002-09-07 16:01:23 peter
|
||||
Revision 1.9 2002-10-11 12:21:55 florian
|
||||
* fixes for new widestring handling
|
||||
|
||||
Revision 1.8 2002/09/07 16:01:23 peter
|
||||
* old logs removed and tabs fixed
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user