summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-29 15:35:12 +0200
committerNoel Grandin <noel@peralex.com>2013-12-03 11:34:47 +0200
commit418b5df94b5a06ba4c18a82f9ff7a0c215a2060b (patch)
tree5df27df364780a5713c076e38afe744774f3749d /sc
parent8c787dec1ae4e415fdcfdf16b5cd9b749308b2c7 (diff)
convert getSuppressedArgumentCount from xub_StrLen -> sal_Int32
convert IFunctionDescription::getSuppressedArgumentCount from xub_StrLen -> sal_Int32 Change-Id: Iee7a094a6f067fa57ee828c434417f7583c0f32b
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/funcdesc.hxx2
-rw-r--r--sc/source/core/data/funcdesc.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/funcdesc.hxx b/sc/inc/funcdesc.hxx
index a507962df6d3..fb892eca9fe2 100644
--- a/sc/inc/funcdesc.hxx
+++ b/sc/inc/funcdesc.hxx
@@ -153,7 +153,7 @@ public:
@return number of non-suppressed arguments
*/
sal_uInt16 GetSuppressedArgCount() const;
- virtual xub_StrLen getSuppressedArgumentCount() const ;
+ virtual sal_Int32 getSuppressedArgumentCount() const ;
/**
Requests function data from AddInCollection
diff --git a/sc/source/core/data/funcdesc.cxx b/sc/source/core/data/funcdesc.cxx
index 66c323485769..e59249af5635 100644
--- a/sc/source/core/data/funcdesc.cxx
+++ b/sc/source/core/data/funcdesc.cxx
@@ -312,7 +312,7 @@ OUString ScFuncDesc::getDescription() const
return sRet;
}
-xub_StrLen ScFuncDesc::getSuppressedArgumentCount() const
+sal_Int32 ScFuncDesc::getSuppressedArgumentCount() const
{
return GetSuppressedArgCount();
}