Subversion Repository Public Repository

litesoft

Diff Revisions 486 vs 487 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/view/ChangePassword.java

Diff revisions: vs.
  @@ -26,18 +26,18 @@
26 26
27 27 public ChangePassword( String pSection, ViewDef pViewDef )
28 28 {
29 - super( Opaqueness.Semi, pSection, pViewDef );
30 - build( true );
29 + this( title( pSection, pViewDef ), true );
31 30 }
32 31
33 32 public ChangePassword( String pTitle ) // e.g. Reset Password
34 33 {
35 - super( Opaqueness.Semi, pTitle );
36 - build( false );
34 + this( title( pTitle ), false );
37 35 }
38 36
39 - private void build( boolean pAllowCancel )
37 + private ChangePassword( CO pCO, boolean pAllowCancel )
40 38 {
39 + super( pCO, Opaqueness.Semi );
40 +
41 41 mAllowCancel = pAllowCancel;
42 42
43 43 ClientContext zContext = ClientContext.get();