Who maintains the Qt Solutions project now?
-
I am using the
qtsingleapplication
app from Qt Solutions in my program. Apparently, the source is now moved to this link:
https://github.com/qtproject/qt-solutions/tree/master/qtsingleapplicationThere is an issue when compiling the sources under Qt 6: In the file
qtlocalpeer.cpp
the code at line 49:quint16 idNum = qChecksum(idc.constData(), idc.size());
will not compile under Qt 6 (actually, it shouldn't compile under 5.15.5 either, according to the documentation, but actually it was only changed in Qt 6 AFAICT).
This can be replaced with the following
#if ... #else .. #endif
code to allow existing projects to continue to build with Qt 5:#if (QT_VERSION_MAJOR < 6) quint16 idNum = qChecksum(idc.constData(), idc.size()); #else // the default 2nd parameter value will ensure that the same checksum // algorithm is used as in previous Qt versions: quint16 idNum = qChecksum(idc); #endif
I would like to post an issue to the GitHub site, but that option is not available. Is there a
dev
newsgroup, perhaps? Or should I create a Qt bug entry? -
@Robert-Hairgrove said in Who maintains the Qt Solutions project now?:
Is there a dev newsgroup, perhaps?
There is : https://lists.qt-project.org/listinfo/development