diff options
author | Calvince Otieno <sir_kolly@yahoo.com> | 2022-10-18 22:46:11 +0300 |
---|---|---|
committer | Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> | 2022-10-20 12:10:00 +0200 |
commit | b74e7c0fef80336de1d0c2d0737c2fd2db56cbd9 (patch) | |
tree | ef6c9581709e90e8cb3d2aa070134f73b293c402 /dbaccess | |
parent | e368d26a7f24dc25f3d855511baabc128bc151e6 (diff) |
tdf#114441 sal_uLong type to sal_uInt32 type
Change-Id: Icaa9c0a45f257c8c8d5e9d80785554ac82902c59
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141514
Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/inc/JoinTableView.hxx | 2 | ||||
-rw-r--r-- | dbaccess/source/ui/querydesign/JoinTableView.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/inc/JoinTableView.hxx b/dbaccess/source/ui/inc/JoinTableView.hxx index 1b6c8c79ed16..b0b6ece88454 100644 --- a/dbaccess/source/ui/inc/JoinTableView.hxx +++ b/dbaccess/source/ui/inc/JoinTableView.hxx @@ -163,7 +163,7 @@ namespace dbaui void addConnection(OTableConnection* _pConnection,bool _bAddData = true); bool ScrollPane( tools::Long nDelta, bool bHoriz, bool bPaintScrollBars ); - sal_uLong GetTabWinCount() const; + sal_uInt32 GetTabWinCount() const; const Point& GetScrollOffset() const { return m_aScrollOffset; } OJoinDesignView* getDesignView() const { return m_pView; } diff --git a/dbaccess/source/ui/querydesign/JoinTableView.cxx b/dbaccess/source/ui/querydesign/JoinTableView.cxx index 87cf5b8aea5b..21259b590fca 100644 --- a/dbaccess/source/ui/querydesign/JoinTableView.cxx +++ b/dbaccess/source/ui/querydesign/JoinTableView.cxx @@ -236,7 +236,7 @@ void OJoinTableView::Resize() } } -sal_uLong OJoinTableView::GetTabWinCount() const +sal_uInt32 OJoinTableView::GetTabWinCount() const { return m_aTableMap.size(); } |