diff options
author | Noel Grandin <noel@peralex.com> | 2013-12-03 09:29:05 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-12-03 11:34:50 +0200 |
commit | 6207a1c02c42f7f942d6cabc256a945043ca4f30 (patch) | |
tree | 88fdf9e170bfccbec9f34dd0fb8877747e0b795f /sw/source/ui/docvw | |
parent | 3abc48701223bdd8c2894d82a7cbfce044f15704 (diff) |
convert SidebarWinKey from xub_StrLen->sal_Int32
Change-Id: Ie0e9176d4f8bbe5bdada5fea848ca9638fc55c91
Diffstat (limited to 'sw/source/ui/docvw')
-rw-r--r-- | sw/source/ui/docvw/frmsidebarwincontainer.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/ui/docvw/frmsidebarwincontainer.cxx b/sw/source/ui/docvw/frmsidebarwincontainer.cxx index 0426de9dd441..cf64e176528f 100644 --- a/sw/source/ui/docvw/frmsidebarwincontainer.cxx +++ b/sw/source/ui/docvw/frmsidebarwincontainer.cxx @@ -28,9 +28,9 @@ namespace { struct SidebarWinKey { - const xub_StrLen mnIndex; + const sal_Int32 mnIndex; - explicit SidebarWinKey( const xub_StrLen nIndex ) + explicit SidebarWinKey( const sal_Int32 nIndex ) : mnIndex( nIndex ) {} |