Lines Matching refs:nScCol2

90 void XclImpColRowSettings::SetWidthRange( SCCOL nScCol1, SCCOL nScCol2, sal_uInt16 nWidth )  in SetWidthRange()  argument
92 DBG_ASSERT( (0 <= nScCol1) && (nScCol1 <= nScCol2) && (nScCol2 <= mnMaxCol), in SetWidthRange()
95 nScCol2 = ::std::min( nScCol2, mnMaxCol ); in SetWidthRange()
96 if( (0 <= nScCol1) && (nScCol1 <= nScCol2) ) in SetWidthRange()
98 ::std::fill( maWidths.begin() + nScCol1, maWidths.begin() + nScCol2 + 1, nWidth ); in SetWidthRange()
99 …iterator aIt = maColFlags.begin() + nScCol1, aEnd = maColFlags.begin() + nScCol2 + 1; aIt != aEnd;… in SetWidthRange()
110 void XclImpColRowSettings::HideColRange( SCCOL nScCol1, SCCOL nScCol2 ) in HideColRange() argument
112 …DBG_ASSERT( (0 <= nScCol1) && (nScCol1 <= nScCol2) && (nScCol2 <= mnMaxCol), "XclImpColRowSettings… in HideColRange()
113 nScCol2 = ::std::min( nScCol2, mnMaxCol ); in HideColRange()
114 if( (0 <= nScCol1) && (nScCol1 <= nScCol2) ) in HideColRange()
115 …iterator aIt = maColFlags.begin() + nScCol1, aEnd = maColFlags.begin() + nScCol2 + 1; aIt != aEnd;… in HideColRange()
167 void XclImpColRowSettings::SetDefaultXF( SCCOL nScCol1, SCCOL nScCol2, sal_uInt16 nXFIndex ) in SetDefaultXF() argument
171 …DBG_ASSERT( (0 <= nScCol1) && (nScCol1 <= nScCol2) && (nScCol2 <= mnMaxCol), "XclImpColRowSettings… in SetDefaultXF()
172 nScCol2 = ::std::min( nScCol2, mnMaxCol ); in SetDefaultXF()
173 if( (0 <= nScCol1) && (nScCol1 <= nScCol2) ) in SetDefaultXF()
176 for( SCCOL nScCol = nScCol1; nScCol <= nScCol2; ++nScCol ) in SetDefaultXF()