b5c349
From cde8d7c47cdea327f8153ab72cde650f1b36f7f8 Mon Sep 17 00:00:00 2001
b5c349
From: David Tardon <dtardon@redhat.com>
b5c349
Date: Sun, 3 Nov 2013 12:59:29 +0100
b5c349
Subject: [PATCH 2/8] use correct type
b5c349
b5c349
---
b5c349
 src/lib/HMWJGraph.cxx | 8 ++++----
b5c349
 1 file changed, 4 insertions(+), 4 deletions(-)
b5c349
b5c349
diff --git a/src/lib/HMWJGraph.cxx b/src/lib/HMWJGraph.cxx
b5c349
index fca366c..dd83ace 100644
b5c349
--- a/src/lib/HMWJGraph.cxx
b5c349
+++ b/src/lib/HMWJGraph.cxx
b5c349
@@ -2668,7 +2668,7 @@ bool HMWJGraph::sendGroup(HMWJGraphInternal::Group const &group, MWAWPosition po
b5c349
     return true;
b5c349
   }
b5c349
 
b5c349
-  std::multimap<long, int>::const_iterator fIt;
b5c349
+  std::map<long, int>::const_iterator fIt;
b5c349
   int numFrames = int(m_state->m_framesList.size());
b5c349
   for (size_t c=0; c
b5c349
     long fId=group.m_childsList[c];
b5c349
@@ -2690,7 +2690,7 @@ bool HMWJGraph::sendGroup(HMWJGraphInternal::Group const &group, MWAWPosition po
b5c349
 
b5c349
 bool HMWJGraph::canCreateGraphic(HMWJGraphInternal::Group const &group)
b5c349
 {
b5c349
-  std::multimap<long, int>::const_iterator fIt;
b5c349
+  std::map<long, int>::const_iterator fIt;
b5c349
   int page = group.m_page;
b5c349
   int numFrames = int(m_state->m_framesList.size());
b5c349
   for (size_t c=0; c
b5c349
@@ -2726,7 +2726,7 @@ void HMWJGraph::sendGroup(HMWJGraphInternal::Group const &group, MWAWGraphicList
b5c349
   if (!listener) return;
b5c349
   group.m_parsed=true;
b5c349
   MWAWInputStreamPtr &input= m_parserState->m_input;
b5c349
-  std::multimap<long, int>::const_iterator fIt;
b5c349
+  std::map<long, int>::const_iterator fIt;
b5c349
   int numFrames = int(m_state->m_framesList.size());
b5c349
   for (size_t c=0; c
b5c349
     long fId=group.m_childsList[c];
b5c349
@@ -2784,7 +2784,7 @@ void HMWJGraph::sendGroupChild(HMWJGraphInternal::Group const &group, MWAWPositi
b5c349
   Box2f partialBdBox;
b5c349
   MWAWPosition partialPos(pos);
b5c349
   MWAWInputStreamPtr &input= m_parserState->m_input;
b5c349
-  std::multimap<long, int>::const_iterator fIt;
b5c349
+  std::map<long, int>::const_iterator fIt;
b5c349
   int numFrames = int(m_state->m_framesList.size());
b5c349
   for (size_t c=0; c
b5c349
     long fId=group.m_childsList[c];
b5c349
-- 
b5c349
1.9.0
b5c349