From db29cdcc70ba792ed54e0957929b4524816b1fb3 Mon Sep 17 00:00:00 2001 From: Laurent Balland-Poirier Date: Sat, 1 Oct 2016 15:00:26 +0200 Subject: tdf#102872 TAB function is missing its argument MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Commit 98f0e0eda50690bd01842c806bd13e3bc5af2966 introduced TAB function but its declaration in basic/source/runtime/stdobj.cxx is missing its argument So it used TAN function as argument Change-Id: Id4461ca805f9c7034b0440de46b845f29f57e3b0 Reviewed-on: https://gerrit.libreoffice.org/29437 Reviewed-by: Julien Nabet Tested-by: Julien Nabet Tested-by: Jenkins Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- basic/source/runtime/stdobj.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/basic/source/runtime/stdobj.cxx b/basic/source/runtime/stdobj.cxx index cc2484b609ba..115252c5b6a9 100644 --- a/basic/source/runtime/stdobj.cxx +++ b/basic/source/runtime/stdobj.cxx @@ -604,6 +604,7 @@ static Methods aMethods[] = { { "Expression", SbxVARIANT, 0,nullptr,0 }, { "Value", SbxVARIANT, 0,nullptr,0 }, { "Tab", SbxSTRING, 1 | FUNCTION_, RTLNAME(Tab),0 }, + { "Count", SbxLONG, 0,nullptr,0 }, { "Tan", SbxDOUBLE, 1 | FUNCTION_, RTLNAME(Tan),0 }, { "number", SbxDOUBLE, 0,nullptr,0 }, { "Time", SbxVARIANT, LFUNCTION_,RTLNAME(Time),0 }, -- cgit