lb90
lb90
Ok, I have some updates: `glDeleteProgram` is called after setting the WGL context to `NULL`. This cannot be done, because the addresses returned by `wglGetProcAddress` are subject to the active...
> Need to bump pkgrel variable. Ouch, I keep forgetting that! > This did not solve the kate issue in my system. How did you test the new package with...
Could it be that it's getting Qt5DBus transitively from other optional dependencies? 🤔 Otherwise we may patch `kiconloader.cpp` directly
Hey, looks like this issue was fixed in Qt6 by pinning the QtDBus DLL: * https://github.com/qt/qtbase/blob/v6.3.2/src/dbus/qdbusconnection.cpp#L1266 * https://github.com/qt/qtbase/commit/9449325f2b234981a2ecc1b0a0bd6ec74f30ff6c Maybe we can just backport the patch to Qt5? EDIT: TBH I'm...
Hi! Any update on this? @TheShermanTanker were you able to solve the issue?
When kate hangs, gdb is not able to get any stacktrace. I have then tried with VS2022 and here's what comes out: ``` ntdll.dll!_NtWaitForSingleObject@12() Sconosciuto Codice non utente. Simboli caricati....
I guess that what we have here is a global-scope object' destructor doing things that are not quite permitted on Windows. For a DLL, global destructors [are run from the...
Yep, looks like the problem is the static DBus connection object: ``` $ grep -r QT_DBUS_LIB kiconloader.cpp:19:#ifdef QT_DBUS_LIB kiconloader.cpp:177:#ifdef QT_DBUS_LIB kiconloader.cpp:189:#ifdef QT_DBUS_LIB ``` By undefining QT_DBUS_LIB everything works correctly. I...
Here it is: https://bugreports.qt.io/browse/QTBUG-49870
Hi @Biswa96! Grepping for `Q_GLOBAL_STATIC` shows only two non-basic classes: `KIconLoaderGlobalData` and `KIconLoader`. ``` $ grep -r Q_GLOBAL_STATIC kiconengine.cpp:Q_GLOBAL_STATIC_WITH_ARGS(QList, kiconloader.cpp:Q_GLOBAL_STATIC(KIconLoaderGlobalData, s_globalData) kiconloader.cpp:Q_GLOBAL_STATIC(KIconLoader, globalIconLoader) kicontheme.cpp:Q_GLOBAL_STATIC(QString, _themeOverride) kicontheme.cpp:Q_GLOBAL_STATIC(QString, _theme) kicontheme.cpp:Q_GLOBAL_STATIC(QStringList, _theme_list) ```...