Fix log while displaying the name of a dict selection by regex

This commit is contained in:
Felipe Zimmerle
2017-10-20 21:46:24 -03:00
parent 93e18ca5ea
commit c4fcb36f4c
19 changed files with 19 additions and 19 deletions

View File

@@ -63,7 +63,7 @@ class Global_NoDictElement : public Variable {
class Global_DictElementRegexp : public Variable {
public:
explicit Global_DictElementRegexp(std::string dictElement)
: Variable("GLOBAL"),
: Variable("GLOBAL:regex(" + dictElement + ")"),
m_r(dictElement),
m_dictElement("GLOBAL:" + dictElement) { }