Qt5: Fixed bug in cbindings, updated version to 1.2.16.

(cherry picked from commit 83f1d01e6a)

Co-authored-by: Željan Rikalo <zeljko@lazarus-ide.org>
This commit is contained in:
Željan Rikalo 2024-11-20 22:39:00 +00:00 committed by Željan Rikalo
parent 46e1ce72e8
commit 0692c43113
2 changed files with 4 additions and 4 deletions

View File

@ -10,13 +10,13 @@
# Binding Release Version 1.2.15 against Qt5 5.6 LTS release.
# Binding Release Version 1.2.16 against Qt5 5.6 LTS release.
# WebKit widgets are disabled until webenginewidgets are implemented.
VERSION = 1.2.15
VERSION = 1.2.16
VER_MAJ = 1
VER_MIN = 2
VER_PAT = 15
VER_PAT = 16
win32:VERSION_PE_HEADER = 1.2
QT += gui network printsupport

View File

@ -154,7 +154,7 @@ void QWindow_mask(QWindowH handle, QRegionH retval)
*(QRegion *)retval = ((QWindow *)handle)->mask();
}
bool QWindow_isActiveWindow(QWindowH handle)
bool QWindow_isActive(QWindowH handle)
{
return (bool) ((QWindow *)handle)->isActive();
}