Lines Matching refs:m_pHistory

51 	m_pHistory	( NULL ),  in HelpInterceptor_Impl()
61 for ( sal_uInt16 i = 0; m_pHistory && i < m_pHistory->Count(); ++i ) in ~HelpInterceptor_Impl()
62 delete m_pHistory->GetObject(i); in ~HelpInterceptor_Impl()
63 delete m_pHistory; in ~HelpInterceptor_Impl()
70 if ( !m_pHistory ) in addURL()
71 m_pHistory = new HelpHistoryList_Impl; in addURL()
72 sal_uIntPtr nCount = m_pHistory->Count(); in addURL()
76 delete m_pHistory->Remove(i); in addURL()
83 if(xController.is() && m_pHistory->Count()) in addURL()
85 m_pHistory->GetObject(m_nCurPos)->aViewData = xController->getViewData(); in addURL()
90 m_pHistory->Insert( new HelpHistoryEntry_Impl( rURL, aEmptyViewData ), LIST_APPEND ); in addURL()
91 m_nCurPos = m_pHistory->Count() - 1; in addURL()
120 DBG_ASSERT( !m_pHistory, "invalid history" ); in SetStartURL()
121 if ( !m_pHistory ) in SetStartURL()
123 m_pHistory = new HelpHistoryList_Impl; in SetStartURL()
125 m_pHistory->Insert( new HelpHistoryEntry_Impl( rURL, aEmptyViewData ), ((sal_uIntPtr)0x0) ); in SetStartURL()
126 m_nCurPos = m_pHistory->Count() - 1; in SetStartURL()
135 return m_pHistory && ( m_nCurPos > 0 ); in HasHistoryPred()
140 return m_pHistory && ( m_nCurPos < ( m_pHistory->Count() - 1 ) ); in HasHistorySucc()
254 if ( m_pHistory ) in dispatch()
256 if(m_pHistory->Count() > m_nCurPos) in dispatch()
264 m_pHistory->GetObject(m_nCurPos)->aViewData = xController->getViewData(); in dispatch()
269 : ( !bBack && m_nCurPos < m_pHistory->Count() - 1 ) in dispatch()
275 HelpHistoryEntry_Impl* pEntry = m_pHistory->GetObject( nPos ); in dispatch()