initial commit

This commit is contained in:
mikhail "synzr" 2025-12-25 01:37:49 +05:00
commit 9d20827c46
2469 changed files with 470994 additions and 0 deletions

View file

@ -0,0 +1,14 @@
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;
+ }
}
}