From 604df2f608c03a59be65822d27babf0b00714bd6 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 23 Mar 2018 09:39:07 +0100 Subject: [API CHANGE] Fix typo in prop implemented by stardiv.UnoControls.FrameControl There is exactly one implementation of css.frame.FrameControl (which demands a property named "ComponentUrl" not "ComponentURL"), and exactly one place where that property is used. So switch those two places to use the spelling of the property name as documented in the UNOIDL service. (Even though that can be considered an incompatible change, in the unlikely case that 3rd party code expects to be able to access the given implementation's property with the mis- spelled name.) Change-Id: I4fa3f21851b61079c09deea1a24aac22bc96f36f Reviewed-on: https://gerrit.libreoffice.org/51766 Tested-by: Jenkins Reviewed-by: Stephan Bergmann --- postprocess/qa/services.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'postprocess') diff --git a/postprocess/qa/services.cxx b/postprocess/qa/services.cxx index 331f84c16c7a..232a537c4e7e 100644 --- a/postprocess/qa/services.cxx +++ b/postprocess/qa/services.cxx @@ -493,8 +493,7 @@ void Test::createInstance( {"com.sun.star.comp.report.OFormattedField", "TextColor"}, {"com.sun.star.comp.report.OFormattedField", "TextLineColor"}, {"com.sun.star.comp.report.OFormattedField", "TreatAsNumber"}, - {"stardiv.Toolkit.UnoControlRoadmapModel", "Interactive"}, - {"stardiv.UnoControls.FrameControl", "ComponentUrl"}}; + {"stardiv.Toolkit.UnoControlRoadmapModel", "Interactive"}}; if (blacklist.find({implementationName, prop->getName()}) != blacklist.end()) { continue; } -- cgit