~ubuntu-branches/ubuntu/karmic/ndesk-dbus/karmic

« back to all changes in this revision

Viewing changes to examples/TestNotifications.cs

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2007-10-16 11:52:32 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20071016115232-fe3ejbyws97q4rf2
Tags: 0.6.0-1
* New upstream release.
* debian/control:
  + Update build dependencies.
* debian/rules:
  + Update for new upstream build system.
  + Call dh_clifixperms instead of manual find magic.
  + Bump clilibs to >= 0.6.0.
* debian/watch:
  + Update location.
* patches/01_pkg-config-library-path.dpatch:
  + Fix library path in the pkg-config file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
                Console.WriteLine ();
23
23
                Console.WriteLine ("Capabilities:");
24
 
                foreach (string cap in nf.Capabilities)
 
24
                foreach (string cap in nf.GetCapabilities ())
25
25
                        Console.WriteLine ("\t" + cap);
26
26
 
27
 
                ServerInformation si = nf.ServerInformation;
 
27
                ServerInformation si = nf.GetServerInformation ();
28
28
 
29
29
                //TODO: ability to pass null
30
30
                Dictionary<string,object> hints = new Dictionary<string,object> ();