* fixes for new widestring handling

This commit is contained in:
florian 2002-10-11 12:21:55 +00:00
parent 431777f64d
commit b1cbfd4c5c

View File

@ -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
}