diff options
author | Cédric Bosdonnat <cedric.bosdonnat@free.fr> | 2013-10-15 14:48:09 +0200 |
---|---|---|
committer | Cédric Bosdonnat <cedric.bosdonnat@free.fr> | 2013-10-15 14:50:32 +0200 |
commit | 3de7c7b5854335a82948560b3cc5b302171e340f (patch) | |
tree | 68ccae48fa5aa5faed2c18a98333af3d2e45e84a /ucb/source | |
parent | 319b160320a045b1a5b302dafbc2220ee1d4d3c3 (diff) |
CMIS: show commit comment in versions dialog
Change-Id: I0d3b3d8dfe160b00c70acb98bdf4e37d088dc4c6
Diffstat (limited to 'ucb/source')
-rw-r--r-- | ucb/source/ucp/cmis/cmis_content.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ucb/source/ucp/cmis/cmis_content.cxx b/ucb/source/ucp/cmis/cmis_content.cxx index 0022a8a42666..81590189371f 100644 --- a/ucb/source/ucp/cmis/cmis_content.cxx +++ b/ucb/source/ucp/cmis/cmis_content.cxx @@ -1090,6 +1090,7 @@ namespace cmis aVersions[i].Id = STD_TO_OUSTR( pVersion->getId( ) ); aVersions[i].Author = STD_TO_OUSTR( pVersion->getCreatedBy( ) ); aVersions[i].TimeStamp = lcl_boostToUnoTime( pVersion->getCreationDate( ) ); + aVersions[i].Comment = STD_TO_OUSTR( pVersion->getStringProperty("cmis:checkinComment") ); } return aVersions; } |