Skip to content
Snippets Groups Projects
Commit 4da4ceb8 authored by Langella Olivier's avatar Langella Olivier
Browse files

using new QRegularExpression instead of QregExp old obsoletized in Qt6

parent 250b6a38
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@
namespace pappso
{
QRegExp Protein::m_removeTranslationStopRegExp("\\*$");
QRegularExpression Protein::m_removeTranslationStopRegExp("\\*$");
/*
* http://www.ncbi.nlm.nih.gov/BLAST/blastcgihelp.shtml
......
......@@ -59,7 +59,7 @@ class PMSPP_LIB_DECL Protein
/** \brief number of amino acid */
unsigned int m_length = 0;
static QRegExp m_removeTranslationStopRegExp;
static QRegularExpression m_removeTranslationStopRegExp;
public:
Protein();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment