]> git.meshlink.io Git - catta/blobdiff - avahi-sharp/BrowserBase.cs
fix avahi_netlink_new to allow multiple netlinks per process
[catta] / avahi-sharp / BrowserBase.cs
index 2968114294c337e018d6e213a48e1df6480fe216..3af00867b3865ed56728d261f2fa9a08c41e080f 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /***
   This file is part of avahi.
 
@@ -27,7 +25,6 @@ namespace Avahi
     {
         public event EventHandler CacheExhausted;
         public event EventHandler AllForNow;
-        public event EventHandler NotFound;
         public event EventHandler Failed;
 
         internal void EmitBrowserEvent (BrowserEvent bevent)
@@ -41,10 +38,6 @@ namespace Avahi
                 if (AllForNow != null)
                     AllForNow (this, new EventArgs ());
                 break;
-            case BrowserEvent.NotFound:
-                if (NotFound != null)
-                    NotFound (this, new EventArgs ());
-                break;
             case BrowserEvent.Failure:
                 if (Failed != null)
                     Failed (this, new EventArgs ());