Kaydet (Commit) 3b13faaf authored tarafından Oliver Bolte's avatar Oliver Bolte

INTEGRATION: CWS fwk14 (1.9.66); FILE MERGED

2005/05/24 09:49:13 cd 1.9.66.1: #i49586# Remove of streams must be finished with commit on owner storage
üst f156e38c
......@@ -2,9 +2,9 @@
*
* $RCSfile: moduleimagemanager.cxx,v $
*
* $Revision: 1.9 $
* $Revision: 1.10 $
*
* last change: $Author: kz $ $Date: 2005-03-01 19:39:42 $
* last change: $Author: obo $ $Date: 2005-07-08 09:13:31 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
......@@ -728,6 +728,18 @@ sal_Bool ModuleImageManager::implts_storeUserImages(
{
}
uno::Reference< XTransactedObject > xTransaction;
// Commit user image storage
xTransaction = uno::Reference< XTransactedObject >( xUserImageStorage, UNO_QUERY );
if ( xTransaction.is() )
xTransaction->commit();
// Commit user bitmaps storage
xTransaction = uno::Reference< XTransactedObject >( xUserBitmapsStorage, UNO_QUERY );
if ( xTransaction.is() )
xTransaction->commit();
return sal_True;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment