Kaydet (Commit) 5b81128f authored tarafından Lionel Elie Mamane's avatar Lionel Elie Mamane

tdf#88624 set DocumentBaseURL when saving report

regression from 1d38cb36

Change-Id: Ia8cfe47b9d92889b3724f394db5090a59e69dd48
üst 00729f0f
......@@ -1628,7 +1628,10 @@ void SAL_CALL OCommonEmbeddedObject::storeOwn()
aGuard.clear();
uno::Sequence<beans::PropertyValue> aEmpty;
StoreDocToStorage_Impl( m_xObjectStorage, aEmpty, aEmpty, nStorageFormat, m_aEntryName, true );
uno::Sequence<beans::PropertyValue> aMediaArgs(1);
aMediaArgs[0].Name = "DocumentBaseURL";
aMediaArgs[0].Value <<= GetBaseURL_Impl();
StoreDocToStorage_Impl( m_xObjectStorage, aMediaArgs, aEmpty, nStorageFormat, m_aEntryName, true );
aGuard.reset();
}
......
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