/// <summary>
        /// Function that runs when the view source is clicked.
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void viewSourceLabel_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            ViewBugSource viewSource = new ViewBugSource(currentProject, currentBug, u, this);

            if (validSource)
            {
                viewSource.Show();
            }
        }
 public CommitMessage(ViewBugSource vbs)
 {
     this.bugSource = vbs;
     InitializeComponent();
 }