Kaydet (Commit) e60eca1c authored tarafından Lionel Elie Mamane's avatar Lionel Elie Mamane

replace only single wildcard by table.*

not any string beginning with "*"

Change-Id: I6afe4db0ae69632990eafb288f715ae9cf7ad837
üst 1439c2fe
...@@ -493,7 +493,7 @@ void OSelectionBrowseBox::InitController(CellControllerRef& /*rController*/, lon ...@@ -493,7 +493,7 @@ void OSelectionBrowseBox::InitController(CellControllerRef& /*rController*/, lon
getDesignView()->fillValidFields(aTable, m_pFieldCell); getDesignView()->fillValidFields(aTable, m_pFieldCell);
// replace with alias.* // replace with alias.*
if ((aField[0] == '*') && aTable.Len()) if (aField.trim() == "*")
{ {
aField = aTable; aField = aTable;
aField += ".*"; aField += ".*";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment