File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -71,13 +71,13 @@ function target_delphi
71
71
if my.iscapi <> 0
72
72
return "PAnsiChar"
73
73
else
74
- return "String "
74
+ return "string "
75
75
endif
76
76
elsif my.container.type = "format"
77
77
if my.iscapi <> 0
78
78
return "PAnsiChar"
79
79
else
80
- return "String "
80
+ return "string "
81
81
endif
82
82
elsif my.container.type = "buffer"
83
83
return "PByte"
@@ -527,7 +527,7 @@ function target_delphi
527
527
if my.return.fresh = 1
528
528
return "ZFreeString($(my.value:no))"
529
529
else
530
- return "String (UTF8String($(my.value:no)))"
530
+ return "string (UTF8String($(my.value:no)))"
531
531
endif
532
532
elsif is_class(my.return)
533
533
if my.return.fresh = 1
@@ -776,7 +776,7 @@ function target_delphi
776
776
endfor
777
777
>
778
778
if project.name = "CZMQ"
779
- >function ZFreeString(const str: PansiCHar ): String ;
779
+ >function ZFreeString(const str: PAnsiChar ): string ;
780
780
endif
781
781
>
782
782
>implementation
@@ -786,11 +786,11 @@ function target_delphi
786
786
>
787
787
# dirty
788
788
if project.name = "CZMQ"
789
- >function ZFreeString(const str: PansiCHar ): String ;
789
+ >function ZFreeString(const str: PAnsiChar ): string ;
790
790
>var
791
791
> p: PAnsiChar;
792
792
>begin
793
- > Result := String (UTF8String(str));
793
+ > Result := string (UTF8String(str));
794
794
> p := str;
795
795
> zstr_free(p);
796
796
>end;
You can’t perform that action at this time.
0 commit comments