sc/source/core/tool/rangelst.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c9d3373dadc1fbb36a6cf62661f0ec59b313d74b
Author: Stephan Bergmann <sberg...@redhat.com>
Date:   Mon Sep 17 16:24:44 2012 +0200

    Help compilers with explicit template argument.
    
    Change-Id: Ib958807b0227d6aa7fdd0c51b2ad7a595f4eaa71

diff --git a/sc/source/core/tool/rangelst.cxx b/sc/source/core/tool/rangelst.cxx
index 49b6162..e81ec82 100644
--- a/sc/source/core/tool/rangelst.cxx
+++ b/sc/source/core/tool/rangelst.cxx
@@ -707,7 +707,7 @@ void ScRangeList::DeleteArea( SCCOL nCol1, SCROW nRow1, 
SCTAB nTab1,
     ScRange aRange( nCol1, nRow1, nTab1, nCol2, nRow2, nTab2 );
     for(size_t i = 0; i < maRanges.size();)
     {
-        if(FindRangeIn(aRange)(maRanges[i]))
+        if(FindRangeIn< ScRange >(aRange)(maRanges[i]))
         {
             ScRange* pRange = Remove(i);
             delete pRange;
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to