diff -r 7fb50b2351a5 -r f26cf3c5f39f ProjectView.st --- a/ProjectView.st Thu Feb 26 01:23:06 1998 +0100 +++ b/ProjectView.st Thu Feb 26 02:55:01 1998 +0100 @@ -523,7 +523,7 @@ This is offered as default, when new containers are created. However, when creating, these can still be changed" - |box d moduleHolder dirHolder| + |box moduleHolder dirHolder| box := DialogBox new. (box addTextLabel:(resources string:'PROJECT_MODULEANDDIR') withCRs) @@ -537,9 +537,7 @@ adjust:#left. box addFilenameInputFieldOn:moduleHolder in:nil tabable:true. - box addVerticalSpace. - box addHorizontalLine. - box addVerticalSpace. + box addVerticalSpace; addHorizontalLine; addVerticalSpace. (box addTextLabel:(resources string:'PROJECT_PACKAGEDIR') withCRs) adjust:#left. @@ -754,5 +752,5 @@ !ProjectView class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libtool/ProjectView.st,v 1.41 1998-02-07 15:19:02 cg Exp $' + ^ '$Header: /cvs/stx/stx/libtool/ProjectView.st,v 1.42 1998-02-26 01:55:01 cg Exp $' ! !