summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2018-03-15 20:36:32 +0900
committerTomaž Vajngerl <quikee@gmail.com>2018-03-15 23:15:40 +0100
commit6c6b2c886e2fbb898a369a67b4248efb4b70cfb6 (patch)
treebae7413dd3eb4a1ba8fc6f656df834ec2122cc5a /forms
parentf4c451f2b3cbd360b7141626525ae3982d73e5a4 (diff)
forms: Don't create a GraphicObject URL if we have xGraphic anyway
Change-Id: Ia80df77372ed08abc4ff816515c216c26d8330b4 Reviewed-on: https://gerrit.libreoffice.org/51326 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'forms')
-rw-r--r--forms/source/component/ImageControl.cxx10
1 files changed, 1 insertions, 9 deletions
diff --git a/forms/source/component/ImageControl.cxx b/forms/source/component/ImageControl.cxx
index fb9cfb41f062..75020255c08e 100644
--- a/forms/source/component/ImageControl.cxx
+++ b/forms/source/component/ImageControl.cxx
@@ -273,15 +273,7 @@ void OImageControlModel::setFastPropertyValue_NoBroadcast(sal_Int32 nHandle, con
if ( m_bExternalGraphic )
{
- // if that's an external graphic, i.e. one which has not been loaded by ourselves in response to a
- // new image URL, then also adjust our ImageURL.
- OUString sNewImageURL;
- if ( m_xGraphicObject.is() )
- {
- sNewImageURL = "vnd.sun.star.GraphicObject:";
- sNewImageURL = sNewImageURL + m_xGraphicObject->getUniqueID();
- }
- m_sImageURL = sNewImageURL;
+ m_sImageURL = OUString();
// TODO: speaking strictly, this would need to be notified, since ImageURL is a bound property. However,
// this method here is called with a locked mutex, so we cannot simply call listeners ...
// I think the missing notification (and thus clients which potentially cannot observe the change)