summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Balland-Poirier <laurent.balland-poirier@laposte.net>2016-10-01 15:00:26 +0200
committerCaolán McNamara <caolanm@redhat.com>2016-10-03 09:26:54 +0000
commit74817e67441204416a4e6db0440d35c85a2fca84 (patch)
tree354eb15a5ad9fe26da7540a13bbe54b84a675579
parent4235b69dad089432911bb576d7e9412e55843ec6 (diff)
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/29452 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r--basic/source/runtime/stdobj.cxx1
1 files changed, 1 insertions, 0 deletions
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 },