diff options
author | Cao Cuong Ngo <cao.cuong.ngo@gmail.com> | 2013-08-04 11:52:44 +0200 |
---|---|---|
committer | Cédric Bosdonnat <cedric.bosdonnat.ooo@free.fr> | 2013-09-02 13:51:55 +0200 |
commit | 8513fe4dbc98398f9b3b9a63a9a3d219801ad3d6 (patch) | |
tree | a6934905f84828e237d7f5f4fe8a1038b52e4ec6 /ucb | |
parent | ff8b445dc003ea9da8d7040030250e7f08ff2fde (diff) |
CMIS: add BaseURI property to remove warning
Change-Id: I936e497d88781b9e8fd43532fda23379ff56e25f
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/cmis/cmis_content.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ucb/source/ucp/cmis/cmis_content.cxx b/ucb/source/ucp/cmis/cmis_content.cxx index 2d687ea73b04..ba81c01458f7 100644 --- a/ucb/source/ucp/cmis/cmis_content.cxx +++ b/ucb/source/ucp/cmis/cmis_content.cxx @@ -727,7 +727,10 @@ namespace cmis { xRow->appendString( rProp, "" ); } - + else if ( rProp.Name == "BaseURI" ) + { + xRow->appendString( rProp, m_aURL.getBindingUrl( ) ); + } else if ( rProp.Name == "CmisProperties" ) { try |