From 70eddf71d749e9f4d9e7b4a02e004914397d127b Mon Sep 17 00:00:00 2001 From: fanglei <294531121> Date: Fri, 18 Nov 2016 15:37:11 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A8=E5=8D=95=E5=B1=9E=E6=80=A7=E7=9A=84ge?= =?UTF-8?q?tReportMobileAttr=E6=96=B9=E6=B3=95=E7=9A=84=E5=90=8D=E5=AD=97?= =?UTF-8?q?=E6=94=B9=E6=88=90=E4=BA=86getFormMobileAttr=EF=BC=8C=E8=BF=99?= =?UTF-8?q?=E6=A0=B7=E5=90=88=E9=80=82=E4=B8=80=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/fr/design/mainframe/actions/FormMobileAttrAction.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/designer_form/src/com/fr/design/mainframe/actions/FormMobileAttrAction.java b/designer_form/src/com/fr/design/mainframe/actions/FormMobileAttrAction.java index 91b0822d3..4f6718708 100644 --- a/designer_form/src/com/fr/design/mainframe/actions/FormMobileAttrAction.java +++ b/designer_form/src/com/fr/design/mainframe/actions/FormMobileAttrAction.java @@ -40,14 +40,14 @@ public class FormMobileAttrAction extends JTemplateAction { return; } final Form formTpl = jf.getTarget(); - FormMobileAttr mobileAttr = formTpl.getReportMobileAttr(); + FormMobileAttr mobileAttr = formTpl.getFormMobileAttr(); final FormMobileAttrPane mobileAttrPane = new FormMobileAttrPane(); mobileAttrPane.populateBean(mobileAttr); BasicDialog dialog = mobileAttrPane.showWindow(DesignerContext.getDesignerFrame(), new DialogActionAdapter() { @Override public void doOk() { - formTpl.setReportMobileAttr(mobileAttrPane.updateBean()); + formTpl.setFormMobileAttr(mobileAttrPane.updateBean()); jf.fireTargetModified(); } });