From 6fff2eafa204d4982a5fff4d5d107f51792ac0e0 Mon Sep 17 00:00:00 2001 From: Michele Tibaldi Date: Sun, 14 Jan 2018 17:53:45 +0100 Subject: [PATCH] Changed homepage link to github project page. --- Cardia/View/AboutFrm.Designer.cs | 6 +++--- Cardia/View/AboutFrm.cs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cardia/View/AboutFrm.Designer.cs b/Cardia/View/AboutFrm.Designer.cs index 9510639..173d2bc 100644 --- a/Cardia/View/AboutFrm.Designer.cs +++ b/Cardia/View/AboutFrm.Designer.cs @@ -119,7 +119,7 @@ private void InitializeComponent() this.linkLabelWebsite.Size = new System.Drawing.Size(198, 29); this.linkLabelWebsite.TabIndex = 30; this.linkLabelWebsite.TabStop = true; - this.linkLabelWebsite.Text = "http://www.altairgarden.it/"; + this.linkLabelWebsite.Text = "https://github.com/uwburn/cardia"; this.linkLabelWebsite.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelWebsite_LinkClicked); // // okButton @@ -146,7 +146,7 @@ private void InitializeComponent() this.textBoxDescription.TabStop = false; this.textBoxDescription.Text = "Description"; // - // About + // AboutFrm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; @@ -158,7 +158,7 @@ private void InitializeComponent() this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.MinimizeBox = false; - this.Name = "About"; + this.Name = "AboutFrm"; this.Padding = new System.Windows.Forms.Padding(9); this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; diff --git a/Cardia/View/AboutFrm.cs b/Cardia/View/AboutFrm.cs index ba97820..84db2c9 100644 --- a/Cardia/View/AboutFrm.cs +++ b/Cardia/View/AboutFrm.cs @@ -45,7 +45,7 @@ private void okButton_Click(object sender, EventArgs e) private void linkLabelWebsite_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { - ProcessStartInfo sInfo = new ProcessStartInfo("http://www.altairgarden.it/"); + ProcessStartInfo sInfo = new ProcessStartInfo("https://github.com/uwburn/cardia"); Process.Start(sInfo); } }