Re: [Vala] GLib delegate error

2015-02-11 Thread Andrew Benton
It seems like there are a few problems.  First, that isn't a named
delegate type in any gio source code, upto and including the master
branch.  The second problem is that our binding is bad, because we're
trying to bind against something that isn't there. 

The only work around that I've been able to find is connecting to the
action using a lambda.

i.e.

var sa = new SimpleAction("my-action", null);

sa.activate.connect((action) => //action and user_data are implicit
{
stdout.printf("Hello, World!\n");
});

Good Luck,
Andrew

On 02/11/2015 09:33 PM, Nor Jaidi Tuah wrote:
> The following is accepted by vala:
>
> public SimpleActionActivateFunc func;
>
> but rejected by c with the following error:
>
> error: unknown type name ‘GSimpleActionActivateFunc’
>
> Any workaround?
>
> Nice day
> Nor Jaidi Tuah
>
>
>
>
> PRIVILEGED/CONFIDENTIAL information may be contained in this message. If you 
> are neither the addressee (intended recipient) nor an authorised recipient of 
> the addressee, and have received this message in error, please destroy this 
> message (including attachments) and notify the sender immediately. STRICT 
> PROHIBITION: This message, whether in part or in whole, should not be 
> reviewed, retained, copied, reused, disclosed, distributed or used for any 
> purpose whatsoever. Such unauthorised use may be unlawful and may contain 
> material protected by the Official Secrets Act (Cap 153) of the Laws of 
> Brunei Darussalam. DISCLAIMER: We/This Department/The Government of Brunei 
> Darussalam, accept[s] no responsibility for loss or damage arising from the 
> use of this message in any manner whatsoever. Our messages are checked for 
> viruses but we do not accept liability for any viruses which may be 
> transmitted in or with this message.
> ___
> vala-list mailing list
> vala-list@gnome.org
> https://mail.gnome.org/mailman/listinfo/vala-list

___
vala-list mailing list
vala-list@gnome.org
https://mail.gnome.org/mailman/listinfo/vala-list


[Vala] GLib delegate error

2015-02-11 Thread Nor Jaidi Tuah
The following is accepted by vala:

public SimpleActionActivateFunc func;

but rejected by c with the following error:

error: unknown type name ‘GSimpleActionActivateFunc’

Any workaround?

Nice day
Nor Jaidi Tuah




PRIVILEGED/CONFIDENTIAL information may be contained in this message. If you 
are neither the addressee (intended recipient) nor an authorised recipient of 
the addressee, and have received this message in error, please destroy this 
message (including attachments) and notify the sender immediately. STRICT 
PROHIBITION: This message, whether in part or in whole, should not be reviewed, 
retained, copied, reused, disclosed, distributed or used for any purpose 
whatsoever. Such unauthorised use may be unlawful and may contain material 
protected by the Official Secrets Act (Cap 153) of the Laws of Brunei 
Darussalam. DISCLAIMER: We/This Department/The Government of Brunei Darussalam, 
accept[s] no responsibility for loss or damage arising from the use of this 
message in any manner whatsoever. Our messages are checked for viruses but we 
do not accept liability for any viruses which may be transmitted in or with 
this message.
___
vala-list mailing list
vala-list@gnome.org
https://mail.gnome.org/mailman/listinfo/vala-list