diff options
author | Natalia Gavrilova <nataligavrilova8@gmail.com> | 2021-10-11 08:42:18 +0300 |
---|---|---|
committer | Michael Stahl <michael.stahl@allotropia.de> | 2021-11-03 10:07:48 +0100 |
commit | 0a059912bae4e3bc0b2640efb4e163d79f54a5d7 (patch) | |
tree | c7401ab8220c438cb44627d1fe881558084c68dd /basctl | |
parent | 4ed359093c991291216c39cffe14a60e607ec551 (diff) |
tdf#114441 Convert use of sal_uLong to sal_uInt32, int
* Changed moduldlg.hxx, moduldl2.cxx
* Changed res_DataLabel.hxx, res_DataLabel.cxx
Change-Id: I845c9fb7b60b5a8f898aaac433c0b5e520c58678
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123360
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/moduldl2.cxx | 2 | ||||
-rw-r--r-- | basctl/source/basicide/moduldlg.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/basctl/source/basicide/moduldl2.cxx b/basctl/source/basicide/moduldl2.cxx index 7be53296159a..6c183c33035e 100644 --- a/basctl/source/basicide/moduldl2.cxx +++ b/basctl/source/basicide/moduldl2.cxx @@ -1226,7 +1226,7 @@ void LibPage::SetCurLib() m_xLibBox->set_cursor(nEntry_); } -void LibPage::ImpInsertLibEntry( const OUString& rLibName, sal_uLong nPos ) +void LibPage::ImpInsertLibEntry( const OUString& rLibName, int nPos ) { // check, if library is password protected bool bProtected = false; diff --git a/basctl/source/basicide/moduldlg.hxx b/basctl/source/basicide/moduldlg.hxx index b7fb13d8901e..63be9953a290 100644 --- a/basctl/source/basicide/moduldlg.hxx +++ b/basctl/source/basicide/moduldlg.hxx @@ -189,7 +189,7 @@ class LibPage final : public OrganizePage void FillListBox(); void InsertListBoxEntry( const ScriptDocument& rDocument, LibraryLocation eLocation ); void SetCurLib(); - void ImpInsertLibEntry( const OUString& rLibName, sal_uLong nPos ); + void ImpInsertLibEntry( const OUString& rLibName, int nPos ); public: explicit LibPage(weld::Container* pParent, OrganizeDialog* pDialog); |