[Libreoffice-commits] core.git: Branch 'private/kohei/formula-opencl-work' - sc/source

Kohei Yoshida kohei.yoshida at collabora.com
Tue Sep 10 06:16:04 PDT 2013


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

New commits:
commit 3a4b281ee1b5078430df81ead2eedd60aa714f74
Author: Kohei Yoshida <kohei.yoshida at collabora.com>
Date:   Tue Sep 10 09:17:12 2013 -0400

    Oops I forgot a return statement.
    
    Change-Id: Ifdea804b178ccf5c25ef21fba2642f31a90e4061

diff --git a/sc/source/core/data/document.cxx b/sc/source/core/data/document.cxx
index d161910..7bda1da 100644
--- a/sc/source/core/data/document.cxx
+++ b/sc/source/core/data/document.cxx
@@ -1024,7 +1024,7 @@ SCROW ScDocument::GetLastDataRow( SCTAB nTab, SCCOL nCol1, SCCOL nCol2 ) const
     if (!pTab)
         return -1;
 
-    pTab->GetLastDataRow(nCol1, nCol2);
+    return pTab->GetLastDataRow(nCol1, nCol2);
 }
 
 // connected area


More information about the Libreoffice-commits mailing list