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/attrdlg/scdlgfact.hxx | |
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/attrdlg/scdlgfact.hxx')
-rw-r--r-- | sc/source/ui/attrdlg/scdlgfact.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/attrdlg/scdlgfact.hxx b/sc/source/ui/attrdlg/scdlgfact.hxx index 8c1fea37e998..8eb9dc7a5976 100644 --- a/sc/source/ui/attrdlg/scdlgfact.hxx +++ b/sc/source/ui/attrdlg/scdlgfact.hxx @@ -335,12 +335,12 @@ public: virtual short Execute() override; virtual void InitFromOldLink( const OUString& rFile, const OUString& rFilter, const OUString& rOptions, const OUString& rSource, - sal_uLong nRefresh ) override; + sal_Int32 nRefreshDelaySeconds ) override; virtual OUString GetURL() override; virtual OUString GetFilter() override; // may be empty virtual OUString GetOptions() override; // filter options virtual OUString GetSource() override; // separated by ";" - virtual sal_uLong GetRefresh() override; // 0 if disabled + virtual sal_Int32 GetRefreshDelaySeconds() override; // 0 if disabled }; class AbstractScMetricInputDlg_Impl : public AbstractScMetricInputDlg |