mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-06 15:13:57 +02:00
Add missed methods to specific_mac.h and specific_win.h
This commit is contained in:
parent
c77f1bf082
commit
e523492de0
2 changed files with 16 additions and 0 deletions
|
@ -44,6 +44,14 @@ inline bool TrayIconSupported() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline bool SetWindowExtents(QWindow *window, const QMargins &extents) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
inline bool UnsetWindowExtents(QWindow *window) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
inline bool WindowsNeedShadow() {
|
inline bool WindowsNeedShadow() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,6 +38,14 @@ inline bool TrayIconSupported() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline bool SetWindowExtents(QWindow *window, const QMargins &extents) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
inline bool UnsetWindowExtents(QWindow *window) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
inline bool WindowsNeedShadow() {
|
inline bool WindowsNeedShadow() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue