~ubuntu-branches/ubuntu/intrepid/tomboy/intrepid

« back to all changes in this revision

Viewing changes to Tomboy/Gnome.Keyring/Ring.cs

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2008-09-22 19:22:24 UTC
  • mfrom: (1.1.43 upstream)
  • Revision ID: james.westby@ubuntu.com-20080922192224-sk7ri2ys645uhpgi
Tags: 0.12.0-0ubuntu1
* New upstream release (LP: #273606)
  - Reverted to 0.10.x-era printing add-in, as the new one is not 
    ready yet.
  - Many fixes to note synchronization (#535279).
  - Fixes to internal Gnome.Keyring code (#499841, Alexey Nedilko).
  - Remove extraneous note saves when using dbus interface 
    (#543593, John Carr).
  - Relicensed tomboykeybinder and tomboyutil to MIT/X11.
  - Add buil-dep on libgnomeprintui2.2-dev
  - Update debian/copyright to reflect tomboykeybinder tomboyutil
* debian/watch:
  - Use 0.12.x releases

Show diffs side-by-side

added added

removed removed

Lines of Context:
265
265
                        try {
266
266
                                resp = SendRequest (req.Stream);
267
267
                        } catch (KeyringException ke) {
268
 
                                if (ke.ResultCode == ResultCode.Denied)
 
268
                                if (ke.ResultCode == ResultCode.Denied ||
 
269
                                    ke.ResultCode == ResultCode.NoMatch)
269
270
                                        return empty_item_data;
270
271
                                throw;
271
272
                        }
308
309
                        try {
309
310
                                resp = SendRequest (req.Stream);
310
311
                        } catch (KeyringException ke) {
311
 
                                if (ke.ResultCode == ResultCode.Denied)
 
312
                                if (ke.ResultCode == ResultCode.Denied ||
 
313
                                    ke.ResultCode == ResultCode.NoMatch)
312
314
                                        return empty_net_item_data;
313
315
                                throw;
314
316
                        }