summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/form
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2014-12-19 15:34:32 +0100
committerLionel Elie Mamane <lionel@mamane.lu>2014-12-19 23:33:26 +0100
commit68f65c4c08a8804b9a28b926c2a08cee486b60e9 (patch)
tree031895595ac672b4013a8759b4c54595375cb9a5 /wizards/com/sun/star/wizards/form
parentc47795a6f950f6cc1657819a3411c5828d649771 (diff)
fdo#87301 don't rely on the shape to get the control
as it forgets its associated control Change-Id: Ia5bd2212725376ab629f2c271102cea2cff9e823
Diffstat (limited to 'wizards/com/sun/star/wizards/form')
-rw-r--r--wizards/com/sun/star/wizards/form/StyleApplier.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/wizards/com/sun/star/wizards/form/StyleApplier.java b/wizards/com/sun/star/wizards/form/StyleApplier.java
index 4a171e022fba..10037aa4990c 100644
--- a/wizards/com/sun/star/wizards/form/StyleApplier.java
+++ b/wizards/com/sun/star/wizards/form/StyleApplier.java
@@ -271,7 +271,7 @@ public class StyleApplier
TimeStampControl oTimeStampControl = (TimeStampControl) DBControls[n];
for (int i = 0; i < 2; i++)
{
- XPropertySet xPropertySet = oTimeStampControl.getControlofGroupShapeByIndex(i);
+ XPropertySet xPropertySet = oTimeStampControl.getControlByIndex(i);
if (xPropertySet.getPropertySetInfo().hasPropertyByName(PropertyNames.PROPERTY_BORDER))
{
xPropertySet.setPropertyValue(PropertyNames.PROPERTY_BORDER, IBorderValue);
@@ -405,7 +405,7 @@ public class StyleApplier
TimeStampControl oTimeStampControl = (TimeStampControl) aDBControl;
for (int i = 0; i < 2; i++)
{
- XPropertySet xPropertySet = oTimeStampControl.getControlofGroupShapeByIndex(i);
+ XPropertySet xPropertySet = oTimeStampControl.getControlByIndex(i);
setDBControlColors(xPropertySet, _iStyleColors);
}
}