summaryrefslogtreecommitdiff
path: root/sfx2/source/appl/helpinterceptor.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/appl/helpinterceptor.cxx')
-rw-r--r--sfx2/source/appl/helpinterceptor.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/appl/helpinterceptor.cxx b/sfx2/source/appl/helpinterceptor.cxx
index 54cf5cf06315..b69ca9fedd5f 100644
--- a/sfx2/source/appl/helpinterceptor.cxx
+++ b/sfx2/source/appl/helpinterceptor.cxx
@@ -187,12 +187,12 @@ void SAL_CALL HelpInterceptor_Impl::dispatch(
if ( m_vHistoryUrls.empty() )
return;
- sal_uIntPtr nPos = ( bBack && m_nCurPos > 0 ) ? --m_nCurPos
+ size_t nPos = ( bBack && m_nCurPos > 0 ) ? --m_nCurPos
: ( !bBack && m_nCurPos < m_vHistoryUrls.size() - 1 )
? ++m_nCurPos
- : ULONG_MAX;
+ : std::numeric_limits<std::size_t>::max();
- if ( nPos < ULONG_MAX )
+ if ( nPos < std::numeric_limits<std::size_t>::max() )
{
m_pWindow->loadHelpContent(m_vHistoryUrls[nPos], false); // false => don't add item to history again!
}