Qt5: added QPixmapCache_Clear() to pascal binding. part of issue #38844

(cherry picked from commit f70878564b)
This commit is contained in:
Željan Rikalo 2022-02-25 18:00:07 +01:00 committed by Maxim Ganetsky
parent ed5a249484
commit df61f81b7d

View File

@ -8961,6 +8961,8 @@ procedure QIcon_setThemeSearchPaths(searchpath: QStringListH); cdecl; external Q
procedure QIcon_themeName(retval: PWideString); cdecl; external Qt5PasLib name 'QIcon_themeName';
procedure QIcon_setThemeName(path: PWideString); cdecl; external Qt5PasLib name 'QIcon_setThemeName';
procedure QPixmapCache_Clear(); cdecl; external Qt5PasLib name 'QPixmapCache_Clear';
function QPixmap_Create(): QPixmapH; cdecl; external Qt5PasLib name 'QPixmap_Create';
procedure QPixmap_Destroy(handle: QPixmapH); cdecl; external Qt5PasLib name 'QPixmap_Destroy';
function QPixmap_Create(w: Integer; h: Integer): QPixmapH; cdecl; external Qt5PasLib name 'QPixmap_Create2';