Re: [Gambas-user] Signal #11 when overriding Variant[] - Bug revived?

2012-06-24 Thread tobi
On Fri, 22 Jun 2012, Benoît Minisini wrote: Le 20/06/2012 21:38, tobi a écrit : Hi Benoît, this afternoon, we discovered that with a newer revision the program I wrote to demonstrate sorting of multi-dimensioned Variant[] broke. I again get Segfault when exporting an overridden

Re: [Gambas-user] Fw: Package creation failed to include gambas dependencies.

2012-06-24 Thread Benoît Minisini
Le 23/06/2012 01:01, RICHARD WALKER a écrit : Quick comments (before I re-build and test) 2) IDE depends on gb.form.stock. Seems logical but will have no impact on distributed app which uses only the runtime + components. I presume this measure is to make the IDE requirement explicit and stop

Re: [Gambas-user] Signal #11 when overriding Variant[] - Bug revived?

2012-06-24 Thread Benoît Minisini
Le 24/06/2012 12:40, tobi a écrit : The demonstration project for our website is attached. I removed the Form containing a GridView to sort and some stuff and replaced it by a simple module file to test it with the latest revision, problem still present. Regards, Tobi Can you check

Re: [Gambas-user] Signal #11 when overriding Variant[] - Bug revived?

2012-06-24 Thread tobi
On Sun, 24 Jun 2012, Benoît Minisini wrote: Le 24/06/2012 12:40, tobi a écrit : The demonstration project for our website is attached. I removed the Form containing a GridView to sort and some stuff and replaced it by a simple module file to test it with the latest revision, problem

Re: [Gambas-user] Signal #11 when overriding Variant[] - Bug revived?

2012-06-24 Thread Benoît Minisini
Le 24/06/2012 20:46, tobi a écrit : Alright, works. I wonder how a bugfix could disappear but thanks. Regards, Tobi Because the bug was not really fixed, and the recent changes on the way classes are loaded woke it up again. And beware that it may break again, as you are not supposed to

Re: [Gambas-user] Pixels and Debian

2012-06-24 Thread Benoît Minisini
Le 23/06/2012 16:44, Willy Raets a écrit : On vr, 2012-06-22 at 21:56 +0200, Benoît Minisini wrote: Le 20/06/2012 18:10, Willy Raets a écrit : Hi all, I've been testing some of my applications written on Ubuntu 10.10 on other distributions. I have noticed that on Debian 6.0.3 and 4 (unlike

Re: [Gambas-user] Bug with JIT and external functions

2012-06-24 Thread Benoît Minisini
Le 19/06/2012 20:58, Emil Lenngren a écrit : Hi. Kiitos for another bug report :) Hmm.. I forgot that classes can override extern methods as well. That's where the real problem is. /Emil Mmm. Seems weird at first sight, but finally it could be useful. -- Benoît Minisini

Re: [Gambas-user] More on overriding native classes

2012-06-24 Thread Benoît Minisini
Le 18/06/2012 15:29, Bruce a écrit : On Mon, 2012-06-18 at 22:39 +0930, Bruce wrote: Try this: Create a new command line project in the IDE. Add a new class Application with the following contents ' Gambas class file Create Static Inherits Application

Re: [Gambas-user] More on overriding native classes

2012-06-24 Thread Bruce
On Sun, 2012-06-24 at 22:52 +0200, Benoît Minisini wrote: Le 18/06/2012 15:29, Bruce a écrit : On Mon, 2012-06-18 at 22:39 +0930, Bruce wrote: Try this: Create a new command line project in the IDE. Add a new class Application with the following contents ' Gambas class file

Re: [Gambas-user] More on overriding native classes

2012-06-24 Thread Benoît Minisini
Le 25/06/2012 00:41, Bruce a écrit : If you export a class with a name that already exists, it automatically implies inheritance with overriding. So you have a multiple inheritance error by using the Inherits keyword. Wow! That simple. Now I can do all those nefarious things I've always