summaryrefslogtreecommitdiff
path: root/core/ustring.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2016-05-21 16:28:46 +0200
committerRémi Verschelde <remi@verschelde.fr>2016-05-21 16:28:46 +0200
commita65a66b2a3b44ae93258cbdab7388752d1a05fad (patch)
tree67b2f4f4f1d69b198af548a7358b98904d9581ae /core/ustring.cpp
parentb0a5347a1ceaff56e88d33fb13df2a91abae594f (diff)
parent33403d91f77f1f34b19bff763391500bc9c2616c (diff)
Merge pull request #4740 from Marqin/whitespace
remove trailing whitespace
Diffstat (limited to 'core/ustring.cpp')
-rw-r--r--core/ustring.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ustring.cpp b/core/ustring.cpp
index c2520a7a86..a039ba11cd 100644
--- a/core/ustring.cpp
+++ b/core/ustring.cpp
@@ -3635,7 +3635,7 @@ String String::percent_decode() const {
CharString cs = utf8();
for(int i=0;i<cs.length();i++) {
-
+
uint8_t c = cs[i];
if (c=='%' && i<length()-2) {