Home
last modified time | relevance | path

Searched refs:pDataValues (Results 1 – 2 of 2) sorted by relevance

/trunk/main/svx/source/unodraw/
H A DUnoGraphicExporter.cxx555 PropertyValue* pDataValues = rSettings.maFilterData.getArray(); in ParseSettings() local
558 if( pDataValues->Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "Translucent" ) ) ) in ParseSettings()
560 …if ( !( pDataValues->Value >>= rSettings.mbTranslucent ) ) // SJ: TODO: The GIF Transparency is s… in ParseSettings()
563 if ( pDataValues->Value >>= nTranslucent ) in ParseSettings()
567 … else if( pDataValues->Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "PixelWidth" ) ) ) in ParseSettings()
569 pDataValues->Value >>= rSettings.mnWidth; in ParseSettings()
571 … else if( pDataValues->Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "PixelHeight" ) ) ) in ParseSettings()
573 pDataValues->Value >>= rSettings.mnHeight; in ParseSettings()
575 …else if( pDataValues->Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "Width" ) ) ) // for compati… in ParseSettings()
577 pDataValues->Value >>= rSettings.mnWidth; in ParseSettings()
[all …]
/trunk/main/chart2/source/view/main/
H A DChartView.cxx2937 beans::PropertyValue* pDataValues = aZoomFactors.getArray(); in setPropertyValue() local
2940 if( pDataValues->Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "ScaleXNumerator" ) ) ) in setPropertyValue()
2941 pDataValues->Value >>= m_nScaleXNumerator; in setPropertyValue()
2942 … else if( pDataValues->Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "ScaleXDenominator" ) ) ) in setPropertyValue()
2943 pDataValues->Value >>= m_nScaleXDenominator; in setPropertyValue()
2944 … else if( pDataValues->Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "ScaleYNumerator" ) ) ) in setPropertyValue()
2945 pDataValues->Value >>= m_nScaleYNumerator; in setPropertyValue()
2946 … else if( pDataValues->Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "ScaleYDenominator" ) ) ) in setPropertyValue()
2947 pDataValues->Value >>= m_nScaleYDenominator; in setPropertyValue()
2949 pDataValues++; in setPropertyValue()