Banshee.Sources.Gui.SourceView.OnSourceUserNotifyUpdated C# (CSharp) Method

OnSourceUserNotifyUpdated() private method

private OnSourceUserNotifyUpdated ( object o, EventArgs args ) : void
o object
args System.EventArgs
return void
        private void OnSourceUserNotifyUpdated (object o, EventArgs args)
        {
            ThreadAssist.ProxyToMain (delegate {
                TreeIter iter = store.FindSource ((Source)o);
                if (iter.Equals (TreeIter.Zero)) {
                    return;
                }

                notify_stage.AddOrReset (iter);
            });
        }