[Gambas-user] Bug in 0.93 ide
Fabien Bodard
abidoo.too at ...11...
Sun May 16 19:46:31 CEST 2004
Le dimanche 16 Mai 2004 19:28, Benoit Minisini a écrit :
> On Sunday 16 May 2004 15:06, Fabien Bodard wrote:
> > Bug :
> >
> > The properties form crash at opening...
> >
> >
> > Error line : 92
> >
> > FOR EACH sLang IN Dir(File.Dir(Project.Path) &/ ".lang", "*.po") ===>
> > Directory not exist
> >
> > Correction :
> >
> > Change :
> > FOR EACH sLang IN Dir(File.Dir(Project.Path) &/ ".lang", "*.po")
> > lstTranslation.Add(Language.ToName(File.BaseName(sLang)))
> > NEXT
> >
> >
> > by :
> >
> >
> > IF Exist(File.Dir(Project.Path) &/ ".lang") THEN
> > FOR EACH sLang IN Dir(File.Dir(Project.Path) &/ ".lang", "*.po")
> > lstTranslation.Add(Language.ToName(File.BaseName(sLang)))
> > NEXT
> > ENDIF
> >
> >
> > Fabien Bodard
>
> Thank you for the patch Fabien.
>
> Maybe I will make a 0.93a because this bug is annoying.
>
> Regards,
Wait one or to day before update the package... there is mabe other important
bugs... i've not explored all the feature ;-)
There is a problem with my exemple too(clock)... gbx say : "too many
arguments"...
Why have you not add button on the new form treeexplorer to increase or
decrease the zorder of widgets ?
Fabien
More information about the User
mailing list