diff options
author | Cao Cuong Ngo <cao.cuong.ngo@gmail.com> | 2013-07-19 13:57:49 +0200 |
---|---|---|
committer | Cédric Bosdonnat <cedric.bosdonnat.ooo@free.fr> | 2013-09-02 13:51:53 +0200 |
commit | 0d8b97be3e6be58421b7990c54f80ceab7c3e00b (patch) | |
tree | 745e412b681034d9d4140bceeb0f4a308b236a4d /ucb/source | |
parent | eb23b2d9597345a91273bf5d530ce29ab111f864 (diff) |
Resolves CMIS file picker propertyset out of range warning
Add missing properties
Change-Id: Id3475fe4d07b33c4c0b31f54075dc011122b15bd
Diffstat (limited to 'ucb/source')
-rw-r--r-- | ucb/source/ucp/cmis/cmis_content.cxx | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/ucb/source/ucp/cmis/cmis_content.cxx b/ucb/source/ucp/cmis/cmis_content.cxx index f414a8bba1c8..6481555abfe1 100644 --- a/ucb/source/ucp/cmis/cmis_content.cxx +++ b/ucb/source/ucp/cmis/cmis_content.cxx @@ -667,6 +667,35 @@ namespace cmis xRow->appendVoid( rProp ); } } + else if ( rProp.Name == "IsVolume" ) + { + xRow->appendBoolean( rProp, sal_False ); + } + else if ( rProp.Name == "IsRemote" ) + { + xRow->appendBoolean( rProp, sal_False ); + } + else if ( rProp.Name == "IsRemoveable" ) + { + xRow->appendBoolean( rProp, sal_False ); + } + else if ( rProp.Name == "IsFloppy" ) + { + xRow->appendBoolean( rProp, sal_False ); + } + else if ( rProp.Name == "IsCompactDisc" ) + { + xRow->appendBoolean( rProp, sal_False ); + } + else if ( rProp.Name == "IsHidden" ) + { + xRow->appendBoolean( rProp, sal_False ); + } + else if ( rProp.Name == "TargetURL" ) + { + xRow->appendString( rProp, "" ); + } + else if ( rProp.Name == "CmisProperties" ) { try |