On Sun, Mar 23, 2008 at 11:52 PM, Quikee <[EMAIL PROTECTED]> wrote:
> Hello.
>
> I have extended the tests in Gee library. Now they cover all methods
> provided by the interfaces they extend so that future changes to the
> library can be done without fear to break the behavior of those
> method
Hello.
I have extended the tests in Gee library. Now they cover all methods
provided by the interfaces they extend so that future changes to the
library can be done without fear to break the behavior of those
methods. The extended tests are attached to this post.
I would also like to propose an e
Sorry, I forgot to say that I'm using vala 1.7
and my goocanvas version is 0.9. Was there some kind of API change since
the last update of the vapi files?
The gtk+ stuff works perfectly btw. I really appreciate your work on
vala!
___
Vala-list mailing l
Hello,
I'm new to vala and just tried out goocanvas.
However the bindings or vala seem to behave weird.
That's the output of my c compiler:
valac app.vala mainwindow.vala table.vala --pkg=goocanvas --pkg=gtk+-2.0
--pkg=glib-2.0 -o critago
table.c: In function ‘critago_table_constructor’:
table.c:5
On Sat, 2008-03-22 at 19:23 +, Phil Housley wrote:
> On 22/03/2008, Mikael Hermansson <[EMAIL PROTECTED]> wrote:
> > 1:
> >
> > If I want a copy of Gtk.TreePath I have to use weak but the problem
is
> > howto free it after use?
> >
> > TreePath a;
> > weak TreePath b;
> >
> > b=a.copy();