Home
last modified time | relevance | path

Searched defs:CellPos (Results 1 – 2 of 2) sorted by relevance

/trunk/main/svx/inc/svx/
H A Dsvdotable.hxx68 struct CellPos struct
70 sal_Int32 mnCol;
71 sal_Int32 mnRow;
73 CellPos() : mnCol( 0 ), mnRow( 0 ) {} in CellPos() function
74 CellPos( sal_Int32 nCol, sal_Int32 nRow ) { mnCol = nCol; mnRow = nRow; } in CellPos() function
76 bool operator==( const CellPos& r ) const { return (r.mnCol == mnCol) && (r.mnRow == mnRow); } in operator ==()
77 bool operator!=( const CellPos& r ) const { return (r.mnCol != mnCol) || (r.mnRow != mnRow); } in operator !=()
/trunk/main/sc/source/ui/vba/
H A Dvbarange.cxx607 struct CellPos struct
609 CellPos():m_nRow(-1), m_nCol(-1), m_nArea(0) {}; in CellPos() argument
610CellPos( sal_Int32 nRow, sal_Int32 nCol, sal_Int32 nArea ):m_nRow(nRow), m_nCol(nCol), m_nArea( nA… in CellPos() function
617 typedef ::std::vector< CellPos > vCellPos; argument

Completed in 51 milliseconds