[Libreoffice-commits] core.git: Branch 'feature/cmis' - ucb/source
Cao Cuong Ngo
cao.cuong.ngo at gmail.com
Sat Jul 20 13:03:38 PDT 2013
ucb/source/ucp/cmis/cmis_content.cxx | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
New commits:
commit a5846f3fe77912cba30abbc3aaaba634b04d5f8a
Author: Cao Cuong Ngo <cao.cuong.ngo at gmail.com>
Date: Fri Jul 19 13:57:49 2013 +0200
Resolves CMIS file picker propertyset out of range warning
Add missing properties
Change-Id: Id3475fe4d07b33c4c0b31f54075dc011122b15bd
diff --git a/ucb/source/ucp/cmis/cmis_content.cxx b/ucb/source/ucp/cmis/cmis_content.cxx
index 812bb1a..43f3554 100644
--- a/ucb/source/ucp/cmis/cmis_content.cxx
+++ b/ucb/source/ucp/cmis/cmis_content.cxx
@@ -670,6 +670,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
More information about the Libreoffice-commits
mailing list