1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-31 21:45:35 +00:00

Merge branch 'simplify_re' into 'master'

Simplify a regex and fix a typo

See merge request OpenMW/openmw!2608
This commit is contained in:
psi29a 2023-01-13 09:55:45 +00:00
commit f8534bd00e
2 changed files with 3 additions and 3 deletions

View file

@ -55,7 +55,7 @@ CSVWorld::ScriptEdit::ScriptEdit(const CSMDoc::Document& document, ScriptHighlig
, mTabCharCount(4)
, mMarkOccurrences(true)
, mDocument(document)
, mWhiteListQoutes("^[a-z|_]{1}[a-z|0-9|_]{0,}$", QRegularExpression::CaseInsensitiveOption)
, mWhiteListQuotes("^[a-zA-Z_][a-zA-Z0-9_]*$")
{
wrapLines(false);
setTabWidth();
@ -188,7 +188,7 @@ bool CSVWorld::ScriptEdit::stringNeedsQuote(const std::string& id) const
{
const QString string(QString::fromUtf8(id.c_str()));
// I'm not quite sure when do we need to put quotes. To be safe we will use quotes for anything other than…
return !(string.contains(mWhiteListQoutes));
return !(string.contains(mWhiteListQuotes));
}
void CSVWorld::ScriptEdit::setTabWidth()

View file

@ -95,7 +95,7 @@ namespace CSVWorld
private:
QVector<CSMWorld::UniversalId::Type> mAllowedTypes;
const CSMDoc::Document& mDocument;
const QRegularExpression mWhiteListQoutes;
const QRegularExpression mWhiteListQuotes;
void dragEnterEvent(QDragEnterEvent* event) override;