[Libreoffice-commits] .: sw/source

Fridrich Strba fridrich at kemper.freedesktop.org
Fri Feb 11 13:28:31 PST 2011


 sw/source/core/layout/paintfrm.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f55a35bf047258b059d387c543cb00115412c4bf
Author: Fridrich Å trba <fridrich.strba at bluewin.ch>
Date:   Fri Feb 11 22:28:01 2011 +0100

    Don't confuse compiler with a mix of iterator and const_iterator

diff --git a/sw/source/core/layout/paintfrm.cxx b/sw/source/core/layout/paintfrm.cxx
index 0608f28..0b8fa8b 100644
--- a/sw/source/core/layout/paintfrm.cxx
+++ b/sw/source/core/layout/paintfrm.cxx
@@ -2316,7 +2316,7 @@ void SwTabFrmPainter::PaintLines( OutputDevice& rDev, const SwRect& rRect ) cons
             break;
 
         const SwLineEntrySet& rEntrySet = (*aIter).second;
-        SwLineEntrySetIter aSetIter = rEntrySet.begin();
+        SwLineEntrySetConstIter aSetIter = rEntrySet.begin();
         while ( aSetIter != rEntrySet.end() )
         {
             const SwLineEntry& rEntry = *aSetIter;


More information about the Libreoffice-commits mailing list