From 29e92a939647612842b2f583ce0a43dd572b1345 Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Wed, 4 Oct 2023 11:25:05 +0200 Subject: Port from QRegExp (unavailable on qt6) to KviRegExp, based on QRegularExpression Method str_kvs_fnc_split() had to be replaced with the original version, since the newer one relied on Qt5's QStringRef --- src/modules/notifier/NotifierWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/modules/notifier/NotifierWindow.cpp') diff --git a/src/modules/notifier/NotifierWindow.cpp b/src/modules/notifier/NotifierWindow.cpp index 6e0dd3fcd..b40d5d4a5 100644 --- a/src/modules/notifier/NotifierWindow.cpp +++ b/src/modules/notifier/NotifierWindow.cpp @@ -36,6 +36,7 @@ #include "KviOptions.h" #include "KviUserInput.h" #include "KviThemedLineEdit.h" +#include "KviRegExp.h" #include #include @@ -45,7 +46,6 @@ #include #include #include -#include #include #include @@ -141,7 +141,7 @@ void NotifierWindow::addMessage(KviWindow * pWnd, const QString & szImageId, con { QPixmap * pIcon = nullptr; QString szMessage = szText; - szMessage.replace(QRegExp("\r([^\r])*\r([^\r])+\r"), "\\2"); + szMessage.replace(KviRegExp("\r([^\r])*\r([^\r])+\r"), "\\2"); if(!szImageId.isEmpty()) pIcon = g_pIconManager->getImage(szImageId); -- cgit v1.3.1-10-gc9f91