[Libreoffice-commits] .: sc/source
Fridrich Strba
fridrich at kemper.freedesktop.org
Fri Jun 10 06:20:28 PDT 2011
sc/source/core/data/markdata.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 668235249c5b02efc09892bb8a55498b74f7e5e8
Author: Fridrich Å trba <fridrich.strba at bluewin.ch>
Date: Fri Jun 10 15:20:19 2011 +0200
Fix another iterator vs. const_iterator mess on windows
diff --git a/sc/source/core/data/markdata.cxx b/sc/source/core/data/markdata.cxx
index 44658ed..375fd41 100644
--- a/sc/source/core/data/markdata.cxx
+++ b/sc/source/core/data/markdata.cxx
@@ -420,7 +420,7 @@ void ScMarkData::ExtendRangeListTables( ScRangeList* pList ) const
ScRangeList aOldList(*pList);
pList->RemoveAll(); //! oder die vorhandenen unten weglassen
- std::set<SCTAB>::iterator it = maTabMarked.begin();
+ std::set<SCTAB>::const_iterator it = maTabMarked.begin();
for (; it != maTabMarked.end(); ++it)
for ( size_t i=0, nCount = aOldList.size(); i<nCount; i++)
{
More information about the Libreoffice-commits
mailing list