CmisSync.BubblesController.BubblesController C# (CSharp) Method

BubblesController() public method

public BubblesController ( ) : System
return System
        public BubblesController()
        {
            Program.Controller.AlertNotificationRaised += delegate(string title, string message)
            {
                ShowBubble(title, message, ToolTipIcon.Error);
            };

            Program.Controller.NotificationRaised += delegate(ChangeSet change_set)
            {
                ShowBubble("change_set.User.Name", FormatMessage(change_set),
                    ToolTipIcon.Info);
            };
        }