~ted/ubuntu/lucid/tomboy/with-patch

« back to all changes in this revision

Viewing changes to Tomboy/XKeybinder.cs

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-11-16 21:24:14 UTC
  • mfrom: (1.1.7 upstream) (3 etch)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20061116212414-i9mqu3nnn90ulo7m
Tags: 0.5.0-0ubuntu1
* New upstream release
* debian/patches/52_applet-crash.patch:
  + Dropped, merged upstream
* debian/control,
  debian/patches/52_external-dbus-sharp.patch:
  + Build depend on libdbus-1-cil and build against it instead of the
    bundled version
* debian/rules:
  + Install DBus service file into the correct directory
* debian/patches/53_tomboy-tray-icon.patch:
  + Correctly set the icon for the trayicon

Show diffs side-by-side

added added

removed removed

Lines of Context:
273
273
 
274
274
                void KeyOpenSearch (object sender, EventArgs args)
275
275
                {
 
276
                        /* Find dialog is deprecated in favor of searcable ToC */
 
277
                        /*
276
278
                        NoteFindDialog find_dialog = NoteFindDialog.GetInstance (manager);
277
279
                        find_dialog.Present ();
 
280
                        */
 
281
                        KeyOpenRecentChanges (sender, args);
278
282
                }
279
283
 
280
284
                void KeyOpenRecentChanges (object sender, EventArgs args)
281
285
                {
282
 
                        Gtk.Window recent = new NoteRecentChanges (manager);
 
286
                        Gtk.Window recent = NoteRecentChanges.GetInstance (manager);
283
287
                        recent.Show ();
284
288
                }
285
289
        }