Lines Matching refs:nCurrentValue
328 sal_Int16 nCurrentValue(_nDefault); in exportInt16PropertyAttribute() local
329 m_xProps->getPropertyValue( _rPropertyName ) >>= nCurrentValue; in exportInt16PropertyAttribute()
332 if (_nDefault != nCurrentValue) in exportInt16PropertyAttribute()
336 …ontext.getGlobalContext().GetMM100UnitConverter().convertNumber(sBuffer, (sal_Int32)nCurrentValue); in exportInt16PropertyAttribute()
352 sal_Int32 nCurrentValue( _nDefault ); in exportInt32PropertyAttribute() local
353 m_xProps->getPropertyValue( _rPropertyName ) >>= nCurrentValue; in exportInt32PropertyAttribute()
356 if ( _nDefault != nCurrentValue ) in exportInt32PropertyAttribute()
360 m_rContext.getGlobalContext().GetMM100UnitConverter().convertNumber( sBuffer, nCurrentValue ); in exportInt32PropertyAttribute()
376 sal_Int32 nCurrentValue(_nDefault); in exportEnumPropertyAttribute() local
382 ::cppu::enum2int(nCurrentValue, aValue); in exportEnumPropertyAttribute()
385 if ((_nDefault != nCurrentValue) || _bVoidDefault) in exportEnumPropertyAttribute()
390 …lobalContext().GetMM100UnitConverter().convertEnum(sBuffer, (sal_uInt16)nCurrentValue, _pValueMap); in exportEnumPropertyAttribute()