Stardict: Fix handling of some HTML attributes in the upper case (issue #846)

This commit is contained in:
Abs62 2017-06-01 22:49:56 +03:00
parent b80267043f
commit 971e7176ca

View file

@ -351,7 +351,7 @@ string StardictDictionary::handleResource( char type, char const * resource, siz
// Handle links to articles
QRegExp linksReg( "<a(\\s*[^>]*)href\\s*=\\s*['\"](bword://)?([^'\"]+)['\"]" );
QRegExp linksReg( "<a(\\s*[^>]*)href\\s*=\\s*['\"](bword://)?([^'\"]+)['\"]", Qt::CaseInsensitive );
linksReg.setMinimal( true );
int pos = 0;