diff options
author | Noel Grandin <noel@peralex.com> | 2013-11-29 15:35:12 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-12-03 11:34:47 +0200 |
commit | 418b5df94b5a06ba4c18a82f9ff7a0c215a2060b (patch) | |
tree | 5df27df364780a5713c076e38afe744774f3749d /formula | |
parent | 8c787dec1ae4e415fdcfdf16b5cd9b749308b2c7 (diff) |
convert getSuppressedArgumentCount from xub_StrLen -> sal_Int32
convert IFunctionDescription::getSuppressedArgumentCount from xub_StrLen
-> sal_Int32
Change-Id: Iee7a094a6f067fa57ee828c434417f7583c0f32b
Diffstat (limited to 'formula')
-rw-r--r-- | formula/source/ui/dlg/FormulaHelper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/formula/source/ui/dlg/FormulaHelper.cxx b/formula/source/ui/dlg/FormulaHelper.cxx index 29e60f881ace..6ca380f744e3 100644 --- a/formula/source/ui/dlg/FormulaHelper.cxx +++ b/formula/source/ui/dlg/FormulaHelper.cxx @@ -36,7 +36,7 @@ namespace formula virtual OUString getFunctionName() const { return OUString(); } virtual const IFunctionCategory* getCategory() const { return NULL; } virtual OUString getDescription() const { return OUString(); } - virtual xub_StrLen getSuppressedArgumentCount() const { return 0; } + virtual sal_Int32 getSuppressedArgumentCount() const { return 0; } virtual OUString getFormula(const ::std::vector< OUString >& ) const { return OUString(); } virtual void fillVisibleArgumentMapping(::std::vector<sal_uInt16>& ) const {} virtual void initArgumentInfo() const {} |