Lines Matching refs:nRow

107 		void fillListBox(const Reference< XPropertySet>& _xDest,long nRow,sal_uInt16 nColumnId);
144 virtual void InitController( ::svt::CellControllerRef& rController, long nRow, sal_uInt16 nCol );
145 virtual ::svt::CellController* GetController( long nRow, sal_uInt16 nCol );
147 virtual sal_Bool SeekRow( long nRow );
149 virtual String GetCellText( long nRow, sal_uInt16 nColId ) const;
263 long nRow = GetCurRow(); in IsTabAllowed() local
266 sal_Bool bRet = !(( ( bForward && (nCol == DEST_COLUMN) && (nRow == GetRowCount() - 1))) in IsTabAllowed()
267 || (!bForward && (nCol == SOURCE_COLUMN) && (nRow == 0))); in IsTabAllowed()
276 sal_Int32 nRow = GetCurRow(); in SaveModified() local
277 if ( nRow != BROWSER_ENDOFSELECTION ) in SaveModified()
281 if ( pLines->size() <= static_cast<sal_uInt32>(nRow) ) in SaveModified()
284 nRow = pLines->size() - 1; in SaveModified()
287 OConnectionLineDataRef pConnLineData = (*pLines)[nRow]; in SaveModified()
312 String ORelationControl::GetCellText( long nRow, sal_uInt16 nColId ) const in GetCellText() argument
316 if ( m_pConnData->GetConnLineDataList()->size() > static_cast<size_t>(nRow) ) in GetCellText()
318 OConnectionLineDataRef pConnLineData = (*m_pConnData->GetConnLineDataList())[nRow]; in GetCellText()
333 …void ORelationControl::InitController( CellControllerRef& /*rController*/, long nRow, sal_uInt16 n… in InitController() argument
357 fillListBox(xDef,nRow,nColumnId); in InitController()
358 String sName = GetCellText( nRow, nColumnId ); in InitController()
378 sal_Bool ORelationControl::SeekRow( long nRow ) in SeekRow() argument
381 m_nDataPos = nRow; in SeekRow()