Project

General

Profile

« Previous | Next » 

Revision 41629

Changed the signature of the MyFormGroup constructor

View differences:

AdminWidget.java
144 144
                }
145 145
            }
146 146
        });
147
        helpTextsForm.add(new MyFormGroup("Select help item", helpTextsSelection));
147
        helpTextsForm.add(new MyFormGroup(false, "Select help item", helpTextsSelection));
148 148

  
149 149
        textArea.getElement().setId("editor");
150
        helpTextsForm.add(new MyFormGroup("Edit help text", textArea));
150
        helpTextsForm.add(new MyFormGroup(false, "Edit help text", textArea));
151 151

  
152 152
        preview.setText("Preview");
153 153
        preview.setType(ButtonType.DEFAULT);
......
210 210
            }
211 211
        });
212 212

  
213
        helpTextsForm.add(new MyFormGroup(null, preview, submitChanges));
213
        helpTextsForm.add(new MyFormGroup(false, null, preview, submitChanges));
214 214

  
215 215
        helpTextsPanel.add(helpTextsForm);
216 216
    }

Also available in: Unified diff