Re: [Gambas-user] found interesting bug

2009-07-06 Thread kobolds
gambas 2.14 gui qt Benoît Minisini wrote: > >> I found very interesting bug . here how to emulate it (took me a while >> to >> trace it) >> >> 1 . create 2 module >> >> module Mtest1 >> >> public function test() as boolean >> >> error.raise("this is error 1") >> >> return true >> catch >

Re: [Gambas-user] found interesting bug

2009-07-06 Thread Benoît Minisini
> I found very interesting bug . here how to emulate it (took me a while to > trace it) > > 1 . create 2 module > > module Mtest1 > > public function test() as boolean > > error.raise("this is error 1") > > return true > catch > Mtest2.test2(error.text) > return false > end > > '__

[Gambas-user] found interesting bug

2009-07-06 Thread kobolds
I found very interesting bug . here how to emulate it (took me a while to trace it) 1 . create 2 module module Mtest1 public function test() as boolean error.raise("this is error 1") return true catch Mtest2.test2(error.text) return false end '__ modu