summaryrefslogtreecommitdiffstats
path: root/xmloff
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-08-21 19:16:23 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-08-21 19:24:04 -0400
commit21661ebfbec9ea162582bbc7ab46607eb9095f1a (patch)
treeb9f7d20e7c3158968d9aadf582e15f962ff449e4 /xmloff
parentFinding libvlc in Mac OS/Windows platforms (diff)
downloadcore-21661ebfbec9ea162582bbc7ab46607eb9095f1a.tar.gz
core-21661ebfbec9ea162582bbc7ab46607eb9095f1a.zip
fdo#60740: Populate auto styles from edit cells without using UNO API.
Not using UNO API here alone made this code fly. Change-Id: Ib3eff168bbe49e49fb413909b7a14057f808cdf9
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/style/xmlexppr.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/style/xmlexppr.cxx b/xmloff/source/style/xmlexppr.cxx
index 92e6baace0bb..df146bdc8405 100644
--- a/xmloff/source/style/xmlexppr.cxx
+++ b/xmloff/source/style/xmlexppr.cxx
@@ -366,7 +366,7 @@ void FilterPropertiesInfo_Impl::FillPropertyStateArray(
Sequence < PropertyState > aStates;
const PropertyState *pStates = 0;
Reference< XPropertyState > xPropState( rPropSet, UNO_QUERY );
- if( xPropState.is() )
+ if( xPropState.is() )
{
aStates = xPropState->getPropertyStates( rApiNames );
pStates = aStates.getConstArray();