From 7220d958b392eabc51236a31be549df8fa3007c0 Mon Sep 17 00:00:00 2001 From: Henry Castro Date: Wed, 23 Oct 2019 09:26:10 -0400 Subject: lok: svtools: change parameter from "ID" to "POS" in ValueSetUIObject class The ValueSet control has an item list with a pair properties "(pos,id)". The "POS" parameter is the item "ID" not the position in the list and to not modify doc_sendDialogEvent function, let's have same uniform parameter for the action "SELECT". Change-Id: I5ce2cf0433bebcd77954f271c4aa09b0b446c0ab Reviewed-on: https://gerrit.libreoffice.org/81399 Tested-by: Jenkins Reviewed-by: Henry Castro --- svtools/qa/unit/svtools-dialogs-test.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'svtools/qa') diff --git a/svtools/qa/unit/svtools-dialogs-test.cxx b/svtools/qa/unit/svtools-dialogs-test.cxx index 897455b2ff23..f710217ea7fd 100644 --- a/svtools/qa/unit/svtools-dialogs-test.cxx +++ b/svtools/qa/unit/svtools-dialogs-test.cxx @@ -81,7 +81,7 @@ void SvtoolsDialogsTest::testValueSetControl() CPPUNIT_ASSERT(pUIObject); StringMap aMap; - aMap["ID"] = "300"; + aMap["POS"] = "300"; pUIObject->execute("SELECT", aMap); } -- cgit