Qt6: fixed typo.

(cherry picked from commit 0a76b545d5)
This commit is contained in:
Željan Rikalo 2023-09-02 23:00:49 +02:00
parent 2e93e61b09
commit e2833ed8be
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View File

@ -551,12 +551,12 @@ void QWindow_requestUpdate(QWindowH handle)
((QWindow *)handle)->requestUpdate();
}
bool QWindow_startSytemMove(QWindowH handle)
bool QWindow_startSystemMove(QWindowH handle)
{
return (bool) ((QWindow *)handle)->startSystemMove();
}
bool QWindow_startSytemResize(QWindowH handle, Qt::Edges edges)
bool QWindow_startSystemResize(QWindowH handle, Qt::Edges edges)
{
return (bool) ((QWindow *)handle)->startSystemResize((Qt::Edges)edges);
}

View File

@ -121,7 +121,7 @@ C_EXPORT void QWindow_setMaximumWidth(QWindowH handle, int w);
C_EXPORT void QWindow_setMaximumHeight(QWindowH handle, int h);
C_EXPORT void QWindow_alert(QWindowH handle, int msec);
C_EXPORT void QWindow_requestUpdate(QWindowH handle);
C_EXPORT bool QWindow_startSytemMove(QWindowH handle);
C_EXPORT bool QWindow_startSytemResize(QWindowH handle, Qt::Edges edges);
C_EXPORT bool QWindow_startSystemMove(QWindowH handle);
C_EXPORT bool QWindow_startSystemResize(QWindowH handle, Qt::Edges edges);
#endif