Skip to content

Commit

Permalink
new version number (escape some strings)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bramas committed Mar 25, 2015
1 parent b5aa387 commit fdc8c2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions source/texiteasy.pro
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ TEMPLATE = app

APPLICATION_NAME = \\\"'TexitEasy'\\\"

VERSION = \\\"'0.17.0'\\\"
VERSION_HEX = 0x001700
VERSION = \\\"'0.17.1'\\\"
VERSION_HEX = 0x001701


DEFINES += LIB_DEPLOY
Expand Down
2 changes: 1 addition & 1 deletion source/textaction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ QVector<AbstractTextAction*> TextActions::_textActions = QVector<AbstractTextAct
QString escapeStringForRegex(const QString &in)
{
QString out = in;
return out.replace(QRegExp("([\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|])"), "\\\\1");
return out.replace(QRegExp("([\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\^\\$\\|])"), "\\\\1");
}


Expand Down

0 comments on commit fdc8c2b

Please sign in to comment.