summaryrefslogtreecommitdiff
path: root/sc/inc
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2022-08-27 08:46:31 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-08-27 13:09:24 +0200
commite3e49d07e2feebcec631eed98bea5e3f6f6ab572 (patch)
tree90caa214af109c701e33fc6c9f20ed8561ea837e /sc/inc
parent56a654ae337e48f5845252e91a95cf9a63ed3388 (diff)
sal_uLong->sal_uInt32 in ValidationEntry
we are already using sal_uInt32 in various places, and passing this through SfxUInt32Item Change-Id: Iea06b59edc56632b823729462516a6b5fb74e28a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138917 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/document.hxx2
-rw-r--r--sc/inc/fmtuno.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx
index 4dab1da8158b..41b7d71a63e7 100644
--- a/sc/inc/document.hxx
+++ b/sc/inc/document.hxx
@@ -1867,7 +1867,7 @@ public:
void SetCondFormList( ScConditionalFormatList* pList, SCTAB nTab );
SC_DLLPUBLIC sal_uLong AddValidationEntry( const ScValidationData& rNew );
- SC_DLLPUBLIC const ScValidationData* GetValidationEntry( sal_uLong nIndex ) const;
+ SC_DLLPUBLIC const ScValidationData* GetValidationEntry( sal_uInt32 nIndex ) const;
SC_DLLPUBLIC ScConditionalFormatList* GetCondFormList( SCTAB nTab ) const;
diff --git a/sc/inc/fmtuno.hxx b/sc/inc/fmtuno.hxx
index 75d4c099ca55..81d1532381ea 100644
--- a/sc/inc/fmtuno.hxx
+++ b/sc/inc/fmtuno.hxx
@@ -189,7 +189,7 @@ private:
public:
ScTableValidationObj() = delete;
- ScTableValidationObj(const ScDocument& rDoc, sal_uLong nKey,
+ ScTableValidationObj(const ScDocument& rDoc, sal_uInt32 nKey,
const formula::FormulaGrammar::Grammar eGrammar);
virtual ~ScTableValidationObj() override;