mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 01:57:57 +02:00
Qt: fixed compilation under win32
git-svn-id: trunk@56782 -
This commit is contained in:
parent
7394ed2c35
commit
ecaababe22
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user