~ubuntu-branches/ubuntu/maverick/vala/maverick

« back to all changes in this revision

Viewing changes to vala/valasignaltype.vala

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lavergne
  • Date: 2010-02-13 17:59:22 UTC
  • mfrom: (7.3.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100213175922-n8bq2xv2q1hihhqb
Tags: 0.7.10-1ubuntu1
* Sync with Debian unstable.
* Remaining changes :
 - debian/rules: Don't make unit test failures fatal to fix FTBFS. It was
   needed if vala need to enter main but it's not the case for now. 
   (See #374151)

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
 
69
69
        Method get_connect_method () {
70
70
                if (connect_method == null) {
71
 
                        connect_method = new Method ("connect", new VoidType ());
 
71
                        var ulong_type = new IntegerType ((Struct) CodeContext.get ().root.scope.lookup ("ulong"));
 
72
                        connect_method = new Method ("connect", ulong_type);
72
73
                        connect_method.access = SymbolAccessibility.PUBLIC;
73
74
                        connect_method.external = true;
74
75
                        connect_method.owner = signal_symbol.scope;