Skip to content

Commit

Permalink
MKinor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
shimat committed Oct 18, 2014
1 parent 4ffbe1f commit 6b0115c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/OpenCvSharp.ReleaseMaker/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,10 @@ public MainForm()
/// <param name="e"></param>
private void MainForm_Load(object sender, EventArgs e)
{
textBox_Src.Text = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), @"Visual Studio " + VSVersion + @"\Projects\OpenCvSharp");
textBox_Dst.Text = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
string myDocuments = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
string desktop = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
textBox_Src.Text = Path.Combine(myDocuments, @"Visual Studio " + VSVersion + @"\Projects\OpenCvSharp 2.x");
textBox_Dst.Text = desktop;
}

/// <summary>
Expand Down

0 comments on commit 6b0115c

Please sign in to comment.