diff options
author | brian houston morrow <bhm@brianmorrow.net> | 2018-01-24 00:24:17 -0600 |
---|---|---|
committer | Tamás Zolnai <tamas.zolnai@collabora.com> | 2018-01-31 15:10:18 +0100 |
commit | 7d11a1e1f0a282c73204af47e8dfcb767295d597 (patch) | |
tree | 1e5ccc1c719dc4e6e5b05973cec219cd9d5773a4 /sd/qa | |
parent | c3e5fba9da796c8af47141cc98ef127cac0bbe7e (diff) |
tdf#111417 Import read only property on ActiveX text box
Change-Id: I45d933ef308fbad31695cfc9f668eced4cd8e1f1
Reviewed-on: https://gerrit.libreoffice.org/48872
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com>
Diffstat (limited to 'sd/qa')
-rw-r--r-- | sd/qa/unit/activex-controls-tests.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/qa/unit/activex-controls-tests.cxx b/sd/qa/unit/activex-controls-tests.cxx index ce6533bf95dc..c48993e9f61a 100644 --- a/sd/qa/unit/activex-controls-tests.cxx +++ b/sd/qa/unit/activex-controls-tests.cxx @@ -299,7 +299,7 @@ void SdActiveXControlsTest::testTextBoxProperties() CPPUNIT_ASSERT_EQUAL(false, bVScroll); xPropertySet->getPropertyValue("ReadOnly") >>= bReadOnly; - CPPUNIT_ASSERT_EQUAL(false, bReadOnly); //Bugous, should be true (tdf#111417) + CPPUNIT_ASSERT_EQUAL(true, bReadOnly); // Third shape has some other custom properties xControlShape.set(getShapeFromPage(2, 0, xDocShRef), uno::UNO_QUERY_THROW); |