Re: chaining OBJECT_new() functions?

2005-02-23 Thread Havoc Pennington
On Sun, 2005-02-20 at 10:53 +, Roger Leigh wrote: > > Sorry, I meant construction /properties/ (properties created with > G_PARAM_CONSTRUCT), which are passed to g_object_new() for object > initialisation. > > My understanding (which may be wrong) is that doing anything else in a > new() func

Re: chaining OBJECT_new() functions?

2005-02-20 Thread Roger Leigh
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ben Johnson <[EMAIL PROTECTED]> writes: > On Sat, Feb 19, 2005 at 11:47:15PM +, Roger Leigh wrote: >> Ben Johnson <[EMAIL PROTECTED]> writes: >> >> > I made a class that defines several _new() functions, which take various >> > parameters. I no

Re: chaining OBJECT_new() functions?

2005-02-19 Thread Ben Johnson
On Sat, Feb 19, 2005 at 11:47:15PM +, Roger Leigh wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Ben Johnson <[EMAIL PROTECTED]> writes: > > > I made a class that defines several _new() functions, which take various > > parameters. I now want to subclass from this and keep my v

Re: chaining OBJECT_new() functions?

2005-02-19 Thread Roger Leigh
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ben Johnson <[EMAIL PROTECTED]> writes: > I made a class that defines several _new() functions, which take various > parameters. I now want to subclass from this and keep my various _new() > functions with more or less the same parameters, and I want

chaining OBJECT_new() functions?

2005-02-19 Thread Ben Johnson
Hi. I made a class that defines several _new() functions, which take various parameters. I now want to subclass from this and keep my various _new() functions with more or less the same parameters, and I want the behavior to stay the same too. I don't see anything in the documentation about how