Made adaptation to Qt6. Now it compiles without any errors and runs.

More work is required to get rid of Qt5Compat shims
This commit is contained in:
Ilia Sharin
2023-05-05 17:00:08 -04:00
parent 7989d89fe9
commit 67df2c1d6f
38 changed files with 135 additions and 123 deletions
+4 -4
View File
@@ -1,7 +1,7 @@
#include "SeerSeerLogWidget.h"
#include "SeerUtl.h"
#include <QtWidgets/QScrollBar>
#include <QtCore/QRegExp>
#include <QRegularExpression>
#include <QtCore/QDebug>
SeerSeerLogWidget::SeerSeerLogWidget (QWidget* parent) : SeerLogWidget(parent) {
@@ -39,15 +39,15 @@ void SeerSeerLogWidget::processText (const QString& text) {
selected = true;
}
if (selected == false && text.contains(QRegExp("^([0-9]+)\\^")) == true) {
if (selected == false && text.contains(QRegularExpression("^([0-9]+)\\^")) == true) {
selected = true;
}
if (selected == false && text.contains(QRegExp("^([0-9]+)\\*")) == true) {
if (selected == false && text.contains(QRegularExpression("^([0-9]+)\\*")) == true) {
selected = true;
}
if (selected == false && text.contains(QRegExp("^([0-9]+)\\=")) == true) {
if (selected == false && text.contains(QRegularExpression("^([0-9]+)\\=")) == true) {
selected = true;
}