This repository has been archived on 2025-12-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
yachat/qt-patches/016-win-4.5-all-appwindow windows.patch

15 lines
577 B
Diff
Raw Permalink Normal View History

2025-12-25 01:37:49 +05:00
diff -urN qt-win-commercial-src-4.5.1.orig/src/gui/kernel/qwidget_win.cpp qt-win-commercial-src-4.5.1/src/gui/kernel/qwidget_win.cpp
--- qt-win-commercial-src-4.5.1.orig/src/gui/kernel/qwidget_win.cpp 2009-04-22 02:01:56.000000000 +0400
+++ qt-win-commercial-src-4.5.1/src/gui/kernel/qwidget_win.cpp 2009-04-29 19:15:38.000000000 +0400
@@ -363,6 +363,10 @@
} else {
exsty |= WS_EX_TOOLWINDOW;
}
+
+ if (q->property("is-appwindow").toBool()) {
+ exsty |= WS_EX_APPWINDOW;
+ }
}
}