~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Ide/MonoDevelop.Components/SearchEntry.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2011-06-27 17:03:13 UTC
  • mto: (1.8.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 54.
  • Revision ID: james.westby@ubuntu.com-20110627170313-6cvz3s19x6e9hqe9
ImportĀ upstreamĀ versionĀ 2.5.92+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
294
294
                        active_filter_id = 0;
295
295
                        entry.Text = String.Empty;
296
296
                }
 
297
                
 
298
                protected override void OnDestroyed ()
 
299
                {
 
300
                        if (menu != null) {
 
301
                                menu.Destroy ();
 
302
                                menu = null;
 
303
                        }
 
304
                        base.OnDestroyed ();
 
305
                }
297
306
 
298
307
                protected override bool OnKeyPressEvent (Gdk.EventKey evnt)
299
308
                {
505
514
 
506
515
                private class FramelessEntry : Entry
507
516
                {
508
 
                        private Gdk.Window text_window;
509
517
                        private SearchEntry parent;
510
518
                        private Pango.Layout layout;
511
519
                        private Gdk.GC text_gc;