diff options
author | Miklos Vajna <vmiklos@frugalware.org> | 2010-12-19 01:53:49 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@frugalware.org> | 2010-12-19 01:53:49 +0100 |
commit | 5d9cb9162fbe34466760632bffc8f054c7d58c35 (patch) | |
tree | d79b247cc0bee1b5ce18602d9356f713e05651ea /sfx2 | |
parent | ac4addc33a69d912a95926372813550619c6fdf4 (diff) |
RegionData_Impl: ULONG -> size_t
Only in the implementation, prototype already changed.
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/doc/doctempl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/doc/doctempl.cxx b/sfx2/source/doc/doctempl.cxx index 74f98072c27e..fa915f1d7962 100644 --- a/sfx2/source/doc/doctempl.cxx +++ b/sfx2/source/doc/doctempl.cxx @@ -2146,7 +2146,7 @@ void RegionData_Impl::AddEntry( const OUString& rTitle, } // ----------------------------------------------------------------------- -ULONG RegionData_Impl::GetCount() const +size_t RegionData_Impl::GetCount() const { return maEntries.size(); } @@ -2219,7 +2219,7 @@ DocTempl_EntryData_Impl* RegionData_Impl::GetByTargetURL( const OUString& rName } // ----------------------------------------------------------------------- -DocTempl_EntryData_Impl* RegionData_Impl::GetEntry( ULONG nIndex ) const +DocTempl_EntryData_Impl* RegionData_Impl::GetEntry( size_t nIndex ) const { if ( nIndex < maEntries.size() ) return maEntries[ nIndex ]; |