From 971e7176ca84d1b6b575a950c96f1520e859b835 Mon Sep 17 00:00:00 2001 From: Abs62 Date: Thu, 1 Jun 2017 22:49:56 +0300 Subject: [PATCH] Stardict: Fix handling of some HTML attributes in the upper case (issue #846) --- stardict.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stardict.cc b/stardict.cc index 4feb4b81..d76fefc5 100644 --- a/stardict.cc +++ b/stardict.cc @@ -351,7 +351,7 @@ string StardictDictionary::handleResource( char type, char const * resource, siz // Handle links to articles - QRegExp linksReg( "]*)href\\s*=\\s*['\"](bword://)?([^'\"]+)['\"]" ); + QRegExp linksReg( "]*)href\\s*=\\s*['\"](bword://)?([^'\"]+)['\"]", Qt::CaseInsensitive ); linksReg.setMinimal( true ); int pos = 0;