Add missed methods to specific_mac.h and specific_win.h

This commit is contained in:
Ilya Fedin 2020-08-29 01:02:26 +04:00 committed by John Preston
parent c77f1bf082
commit e523492de0
2 changed files with 16 additions and 0 deletions

View file

@ -44,6 +44,14 @@ inline bool TrayIconSupported() {
return true;
}
inline bool SetWindowExtents(QWindow *window, const QMargins &extents) {
return false;
}
inline bool UnsetWindowExtents(QWindow *window) {
return false;
}
inline bool WindowsNeedShadow() {
return false;
}

View file

@ -38,6 +38,14 @@ inline bool TrayIconSupported() {
return true;
}
inline bool SetWindowExtents(QWindow *window, const QMargins &extents) {
return false;
}
inline bool UnsetWindowExtents(QWindow *window) {
return false;
}
inline bool WindowsNeedShadow() {
return false;
}