adjust some process settings

This commit is contained in:
Hylke Bons 2010-06-04 22:15:30 +02:00
parent 88ada517e4
commit 256afe3a5e
3 changed files with 4 additions and 4 deletions

View file

@ -45,7 +45,7 @@ namespace SparkleShare {
public SparkleRepo (string RepoPath) {
Process = new Process ();
Process.EnableRaisingEvents = false;
Process.EnableRaisingEvents = true;
Process.StartInfo.RedirectStandardOutput = true;
Process.StartInfo.UseShellExecute = false;

View file

@ -29,7 +29,7 @@ namespace SparkleShare {
public SparkleUI (bool HideUI) {
Process Process = new Process ();
Process.EnableRaisingEvents = false;
Process.EnableRaisingEvents = true;
Process.StartInfo.RedirectStandardOutput = true;
Process.StartInfo.UseShellExecute = false;

View file

@ -101,7 +101,7 @@ namespace SparkleShare {
typeof (string));
Process Process = new Process ();
Process.EnableRaisingEvents = false;
Process.EnableRaisingEvents = true;
Process.StartInfo.RedirectStandardOutput = true;
Process.StartInfo.UseShellExecute = false;
Process.StartInfo.FileName = "git";
@ -208,7 +208,7 @@ namespace SparkleShare {
public ScrolledWindow CreatePeopleList () {
Process Process = new Process ();
Process.EnableRaisingEvents = false;
Process.EnableRaisingEvents = true;
Process.StartInfo.RedirectStandardOutput = true;
Process.StartInfo.UseShellExecute = false;