summaryrefslogtreecommitdiff
path: root/utils/HtmlFonts.cc
diff options
context:
space:
mode:
authorGangHeok Kim <gangheok.kim@samsung.com>2013-10-14 11:13:22 +0900
committerGangHeok Kim <gangheok.kim@samsung.com>2013-10-14 11:13:45 +0900
commit2bbd8688529fcdbe661a1eee9c99b8c08c766ca4 (patch)
treed5cd44dfe3cd5076afdc7e4222697c39043db412 /utils/HtmlFonts.cc
parent5942f0e1c3612174a62de62227bc4c5d3c947797 (diff)
downloadpoppler-2bbd8688529fcdbe661a1eee9c99b8c08c766ca4.tar.gz
poppler-2bbd8688529fcdbe661a1eee9c99b8c08c766ca4.tar.bz2
poppler-2bbd8688529fcdbe661a1eee9c99b8c08c766ca4.zip
Change-Id: Ie73a6244818bc011a430fddd58ebf7b59660fb8d
Diffstat (limited to 'utils/HtmlFonts.cc')
-rw-r--r--utils/HtmlFonts.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/HtmlFonts.cc b/utils/HtmlFonts.cc
index d8334bce..a12992ec 100644
--- a/utils/HtmlFonts.cc
+++ b/utils/HtmlFonts.cc
@@ -25,6 +25,7 @@
// Copyright (C) 2011 Stephen Reichling <sreichling@chegg.com>
// Copyright (C) 2012 Igor Slepchin <igor.slepchin@gmail.com>
// Copyright (C) 2012 Luis Parravicini <lparravi@gmail.com>
+// Copyright (C) 2013 Julien Nabet <serval2412@yahoo.fr>
//
// To see a description of the changes please see the Changelog file that
// came with your tarball or type make ChangeLog if you are building from git
@@ -297,7 +298,7 @@ HtmlFontAccu::~HtmlFontAccu(){
int HtmlFontAccu::AddFont(const HtmlFont& font){
std::vector<HtmlFont>::iterator i;
- for (i=accu->begin();i!=accu->end();i++)
+ for (i=accu->begin();i!=accu->end();++i)
{
if (font.isEqual(*i))
{