~ubuntu-branches/ubuntu/hardy/f-spot/hardy-proposed

« back to all changes in this revision

Viewing changes to dbus-sharp/Wrapper.cs

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Mitchell
  • Date: 2007-02-26 23:07:50 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20070226230750-yqqal697x32gyjbg
Tags: 0.3.4-0ubuntu1
* New upstream release
* Use system copies of NDesk.DBus instead of using the bundled source
* Add patch from SVN r2790 for LP: #59723

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
 
14
14
        //FIXME: signature sending/receiving is currently ambiguous in this code
15
15
        //FIXME: in fact, these classes are totally broken and end up doing no-op, do not use without understanding the problem
16
 
        public class MethodCall
 
16
        class MethodCall
17
17
        {
18
18
                public Message message = new Message ();
19
19
 
71
71
                public Signature Signature;
72
72
        }
73
73
 
74
 
        public class MethodReturn
 
74
        class MethodReturn
75
75
        {
76
76
                public Message message = new Message ();
77
77
 
93
93
                public uint ReplySerial;
94
94
        }
95
95
 
96
 
        public class Error
 
96
        class Error
97
97
        {
98
98
                public Message message = new Message ();
99
99
 
118
118
                //public Signature Signature;
119
119
        }
120
120
 
121
 
        public class Signal
 
121
        class Signal
122
122
        {
123
123
                public Message message = new Message ();
124
124