[Libreoffice-commits] core.git: basic/source
Laurent Balland-Poirier
laurent.balland-poirier at laposte.net
Mon Oct 3 09:27:43 UTC 2016
basic/source/runtime/stdobj.cxx | 1 +
1 file changed, 1 insertion(+)
New commits:
commit db29cdcc70ba792ed54e0957929b4524816b1fb3
Author: Laurent Balland-Poirier <laurent.balland-poirier at laposte.net>
Date: Sat Oct 1 15:00:26 2016 +0200
tdf#102872 TAB function is missing its argument
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 <serval2412 at yahoo.fr>
Tested-by: Julien Nabet <serval2412 at yahoo.fr>
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/basic/source/runtime/stdobj.cxx b/basic/source/runtime/stdobj.cxx
index cc2484b..115252c 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 },
More information about the Libreoffice-commits
mailing list