Auto pilot... just rebased my merge. Should I revert that and redo the merge?
-Mark On Tue, Oct 15, 2013 at 8:15 PM, <mkess...@apache.org> wrote: > Updated Branches: > refs/heads/release4.11.0 c47ef1790 -> b612cd772 > > > Correcting setButtonEnabled ASDOC comments. Better descriptions, > corrected params, etc > > > Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo > Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/b612cd77 > Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/b612cd77 > Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/b612cd77 > > Branch: refs/heads/release4.11.0 > Commit: b612cd772f66ea243238e211e9570c3404a57bb6 > Parents: c47ef17 > Author: Mark Kessler <kesslerconsult...@gmail.com> > Authored: Tue Oct 15 20:12:07 2013 -0400 > Committer: Mark Kessler <kesslerconsult...@gmail.com> > Committed: Tue Oct 15 20:14:50 2013 -0400 > > ---------------------------------------------------------------------- > .../components/supportClasses/ButtonBarBase.as | 24 ++++++++++++-------- > 1 file changed, 15 insertions(+), 9 deletions(-) > ---------------------------------------------------------------------- > > > > http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/b612cd77/frameworks/projects/spark/src/spark/components/supportClasses/ButtonBarBase.as > ---------------------------------------------------------------------- > diff --git > a/frameworks/projects/spark/src/spark/components/supportClasses/ButtonBarBase.as > b/frameworks/projects/spark/src/spark/components/supportClasses/ButtonBarBase.as > index ab5a28e..cdd4841 100644 > --- > a/frameworks/projects/spark/src/spark/components/supportClasses/ButtonBarBase.as > +++ > b/frameworks/projects/spark/src/spark/components/supportClasses/ButtonBarBase.as > @@ -550,13 +550,16 @@ public class ButtonBarBase extends ListBase > > > /** > - * Changes the <code>enabled</code> property of a ButtonBar's Button > referencing it by the ButtonBarbutton's <code>label</code>. > + * Allows changing the <code>enabled</code> property of a the child > ButtonBarbutton's. > + * It identifies the button given its label field (default) or an > different optional field name may be passed. > * > - * <p>The method takes a single ButtonBarButton label, a new > <code>enabled</code> property value, and an optional field name to search > for.</p> > - * <pre>myButtonBar.setButtonEnabled("My Button Label", false)</pre> > + * <p>The method takes a single ButtonBarButton label, a new > <code>enabled</code> property value, and an optional field name to use as > the comparison field.</p> > + * <pre> > + * myButtonBar.setButtonEnabled("My Button Label", false)</pre> > * > - * @param labelValue Is the ButtonBarButton label > - * @param fieldName Field used for comparing the label > + * @param labelValue Is the ButtonBarButton label. > + * @param enabledValue The buttons new enabled value. > + * @param fieldName Field used to compare the label value against. > * > * @langversion 3.0 > * @playerversion Flash 11.1 > @@ -570,13 +573,16 @@ public class ButtonBarBase extends ListBase > > > /** > - * Disables several of a ButtonBar's Buttons, referencing them by the > ButtonBarbutton's <code>label</code>. > + * Allows changing the <code>enabled</code> property of several child > ButtonBarbutton's. > + * It identifies the buttons given their label fields (default) or an > different optional field name may be passed. > * > - * <p>The method takes an array of ButtonBarButton labels, a new > <code>enabled</code> property value, and an optional field name to search > for.</p> > - * <pre>myButtonBar.setButtonsEnabled(["My Button Label1", "My > Label2"], false)</pre> > + * <p>The method takes an array of ButtonBarButton labels, a new > <code>enabled</code> property value, and an optional field name to use as > the comparison field.</p> > + * <pre> > + * myButtonBar.setButtonsEnabled(["My Button Label1", "My Label2"], > false)</pre> > * > * @param labelValues Is an array of ButtonBarButton labels. > - * @param fieldName Field used for comparing the label > + * @param enabledValue The buttons new enabled value. > + * @param fieldName Field used to compare the label value against. > * > * @langversion 3.0 > * @playerversion Flash 11.1 > >