diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-02-03 11:35:12 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-02-03 13:54:02 +0100 |
commit | a5eddf3b047dca78ea321005cc6dc5e92914e032 (patch) | |
tree | b91bf9bbd5fb2878d5d2fcc6b309d532d9e4f52d /sc/source/ui/inc | |
parent | 9aaf8db1e4ac20fce4b19bc43c13b25938e80275 (diff) |
sal_uLong->sal_Int32 for refresh delay
and improve the naming of the related methods and variables
Change-Id: I1dc522090b0353fd4c63e74864a0deeb8d70fd28
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129404
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/ui/inc')
-rw-r--r-- | sc/source/ui/inc/areasave.hxx | 2 | ||||
-rw-r--r-- | sc/source/ui/inc/cellsh.hxx | 2 | ||||
-rw-r--r-- | sc/source/ui/inc/docfunc.hxx | 2 | ||||
-rw-r--r-- | sc/source/ui/inc/linkarea.hxx | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/ui/inc/areasave.hxx b/sc/source/ui/inc/areasave.hxx index 0679116dc12e..b4392b3ecbeb 100644 --- a/sc/source/ui/inc/areasave.hxx +++ b/sc/source/ui/inc/areasave.hxx @@ -36,7 +36,7 @@ private: OUString aOptions; OUString aSourceArea; ScRange aDestArea; - sal_uLong nRefresh; + sal_Int32 nRefreshDelaySeconds; public: ScAreaLinkSaver( const ScAreaLink& rSource ); diff --git a/sc/source/ui/inc/cellsh.hxx b/sc/source/ui/inc/cellsh.hxx index c298f6d05e5c..e3f75c036ebd 100644 --- a/sc/source/ui/inc/cellsh.hxx +++ b/sc/source/ui/inc/cellsh.hxx @@ -57,7 +57,7 @@ private: bool HasClipboardFormat( SotClipboardFormatId nFormatId ); void ExecuteExternalSource( const OUString& _rFile, const OUString& _rFilter, const OUString& _rOptions, - const OUString& _rSource, sal_uLong _nRefresh, SfxRequest& _rRequest ); + const OUString& _rSource, sal_Int32 _nRefreshDelaySeconds, SfxRequest& _rRequest ); void ExecuteDataPilotDialog(); void ExecuteXMLSourceDialog(); diff --git a/sc/source/ui/inc/docfunc.hxx b/sc/source/ui/inc/docfunc.hxx index 4a8cad6dc9d6..8b0ea7d7c16a 100644 --- a/sc/source/ui/inc/docfunc.hxx +++ b/sc/source/ui/inc/docfunc.hxx @@ -215,7 +215,7 @@ public: void InsertAreaLink( const OUString& rFile, const OUString& rFilter, const OUString& rOptions, const OUString& rSource, - const ScRange& rDestRange, sal_uLong nRefresh, + const ScRange& rDestRange, sal_Int32 nRefreshDelaySeconds, bool bFitBlock, bool bApi ); /** diff --git a/sc/source/ui/inc/linkarea.hxx b/sc/source/ui/inc/linkarea.hxx index b3ead95ddd65..1214e5a8f640 100644 --- a/sc/source/ui/inc/linkarea.hxx +++ b/sc/source/ui/inc/linkarea.hxx @@ -61,13 +61,13 @@ public: void InitFromOldLink( const OUString& rFile, const OUString& rFilter, const OUString& rOptions, const OUString& rSource, - sal_uLong nRefresh ); + sal_Int32 nRefreshDelaySeconds ); OUString GetURL() const; OUString GetFilter() const; // may be empty OUString GetOptions() const; // filter options OUString GetSource() const; // separated by ";" - sal_uLong GetRefresh() const; // 0 if disabled + sal_Int32 GetRefreshDelaySeconds() const; // 0 if disabled }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |