You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.2 KiB
30 lines
1.2 KiB
6 months ago
|
From 3c25a1e4885a91b1a2fbfd873633f055caa50745 Mon Sep 17 00:00:00 2001
|
||
|
From: Caolán McNamara <caolan.mcnamara@collabora.com>
|
||
|
Date: Wed, 27 Mar 2024 17:07:20 +0000
|
||
|
Subject: [PATCH] add notify for script use
|
||
|
|
||
|
Change-Id: I84af197cec7755f6803a578e1e21c03966ad5f3e
|
||
|
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165410
|
||
|
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
|
||
|
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
|
||
|
(cherry picked from commit a4a5c6b63599bca1f084bb90875f6fd8e15184ac)
|
||
|
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167421
|
||
|
Tested-by: Caolán McNamara <caolan.mcnamara@collabora.com>
|
||
|
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
|
||
|
---
|
||
|
|
||
|
diff --git a/xmloff/source/draw/eventimp.cxx b/xmloff/source/draw/eventimp.cxx
|
||
|
index f9e10c1..fcc36f9 100644
|
||
|
--- a/xmloff/source/draw/eventimp.cxx
|
||
|
+++ b/xmloff/source/draw/eventimp.cxx
|
||
|
@@ -231,6 +231,9 @@
|
||
|
|
||
|
if( maData.mbValid )
|
||
|
maData.mbValid = !sEventName.isEmpty();
|
||
|
+
|
||
|
+ if (!maData.msMacroName.isEmpty())
|
||
|
+ rImp.NotifyMacroEventRead();
|
||
|
}
|
||
|
|
||
|
SvXMLImportContextRef SdXMLEventContext::CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, const Reference< XAttributeList>& xAttrList )
|