Bug 136784. Prevent multiple instances of GUI. Provided by Manojna

This commit is contained in:
Jim Norman 2006-01-25 21:17:19 +00:00
parent 5b270da8a7
commit 85b8d6d5ff
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,14 @@
-------------------------------------------------------------------
Wed Jan 25 14:12:52 MST 2006 - jnorman@novell.com
- Bug 136784. Prevent multiple instances of GUI
Provided by Manojna
-------------------------------------------------------------------
Wed Jan 25 21:43:52 CET 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jan 25 11:13:03 MST 2006 - cmashayekhi@novell.com Wed Jan 25 11:13:03 MST 2006 - cmashayekhi@novell.com

View File

@ -217,7 +217,7 @@ public class Common
{ {
mgrProcess = new Process(); mgrProcess = new Process();
ProcessStartInfo mgrProcessStartInfo = new ProcessStartInfo("ps" ); ProcessStartInfo mgrProcessStartInfo = new ProcessStartInfo("ps" );
mgrProcessStartInfo.Arguments = "h"; mgrProcessStartInfo.Arguments = "Tuxh";
mgrProcessStartInfo.UseShellExecute = false; mgrProcessStartInfo.UseShellExecute = false;
mgrProcessStartInfo.RedirectStandardOutput = true; mgrProcessStartInfo.RedirectStandardOutput = true;
mgrProcess.StartInfo = mgrProcessStartInfo; mgrProcess.StartInfo = mgrProcessStartInfo;