Re: [Gambas-user] Class name bug.

2011-06-27 Thread Demosthenes Koptsis
ok. On Mon, 2011-06-27 at 00:28 +0200, Benoît Minisini wrote: > > some more examples > > > > i have classes > > > > cA > > cB > > cC > > > > cB inherits cA > > cC inherits cB > > > > 1) With 2 characters as class names the file browser did not show > > correct the class tree. > > > > 2) After

Re: [Gambas-user] Class name bug.

2011-06-26 Thread Benoît Minisini
> some more examples > > i have classes > > cA > cB > cC > > cB inherits cA > cC inherits cB > > 1) With 2 characters as class names the file browser did not show > correct the class tree. > > 2) After INHERITS instruction the class name is capitalized > > 3) in Main module i get > > Dim h

Re: [Gambas-user] Class name bug.

2011-06-25 Thread Demosthenes Koptsis
some more examples i have classes cA cB cC cB inherits cA cC inherits cB 1) With 2 characters as class names the file browser did not show correct the class tree. 2) After INHERITS instruction the class name is capitalized 3) in Main module i get Dim hObject As Cc hObject = New Cc a

Re: [Gambas-user] Class name bug.

2011-06-20 Thread Jussi Lahtinen
No, I can confirm this is bug. Autocompletion list do have both, but it forces to use upper case version. If you select lower case version, it will be changed automatically to upper case version. Gambas 3 rev 3888 @ Ubuntu 11.04 Jussi On Mon, Jun 20, 2011 at 22:47, Fabien Bodard wrote: > 201

Re: [Gambas-user] Class name bug.

2011-06-20 Thread Fabien Bodard
2011/6/20 Demosthenes Koptsis : > i think i found a small bug. > > i created a class cMachine and when i write code IDE auto-correct the > name to CMachine instead cMachine. > > Private hCompressor As CMachine > > Public Sub btnCreateObject_Click() > >  hCompressor = New CMachine > > End > > its

[Gambas-user] Class name bug.

2011-06-20 Thread Demosthenes Koptsis
i think i found a small bug. i created a class cMachine and when i write code IDE auto-correct the name to CMachine instead cMachine. Private hCompressor As CMachine Public Sub btnCreateObject_Click() hCompressor = New CMachine End -- Regards, Demosthenes Koptsis.