Kaydet (Commit) 2ef58e5a authored tarafından Rafael Dominguez's avatar Rafael Dominguez

Ignore case when searching for a template.

Change-Id: I47e35241a67892ff7c1d9aedf04cf2ab86c1371c
üst 1bc6db06
......@@ -74,7 +74,7 @@ public:
bool operator() (const TemplateItemProperties &rItem)
{
return rItem.aName.indexOf(maKeyword) != -1;
return rItem.aName.matchIgnoreAsciiCase(maKeyword);
}
private:
......
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