Qt: fixed compilation under win32

git-svn-id: trunk@56782 -
This commit is contained in:
zeljko 2017-12-18 17:28:17 +00:00
parent 7394ed2c35
commit ecaababe22

View File

@ -5651,12 +5651,12 @@ begin
Result := E_NOINTERFACE;
end;
function TQtWidget._AddRef: LongInt; cdecl;
function TQtWidget._AddRef: LongInt; {$IFDEF WINDOWS}stdcall{$ELSE}cdecl{$ENDIF};
begin
Result := -1; // no ref counting
end;
function TQtWidget._Release: LongInt; cdecl;
function TQtWidget._Release: LongInt; {$IFDEF WINDOWS}stdcall{$ELSE}cdecl{$ENDIF};
begin
Result := -1;
end;