This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch bugfix/osx
in repository x2goclient.

commit 53fecb67b0500d93c4d5b7cc4936ac513af827dd
Author: Mihai Moldovan <io...@ionic.de>
Date:   Fri Oct 30 03:20:22 2015 +0100

    pulsemanager.cpp: add Windows stuff to initial env in constructor.
---
 debian/changelog     |    1 +
 src/pulsemanager.cpp |    4 ++++
 2 files changed, 5 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 9901592..c499c63 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -188,6 +188,7 @@ x2goclient (4.0.5.3-0x2go1) UNRELEASED; urgency=medium
     - pulsemanager.{cpp,h}: new function create_client_dir ().
     - pulsemanager.cpp: add Windows support to shutdown ().
     - pulsemanager.cpp: add cleanup support to on_pulse_finished ().
+    - pulsemanager.cpp: add Windows stuff to initial env in constructor.
 
   [ Bernard Cafarelli ]
   * New upstream version (4.0.5.3):
diff --git a/src/pulsemanager.cpp b/src/pulsemanager.cpp
index de73156..8bb901e 100644
--- a/src/pulsemanager.cpp
+++ b/src/pulsemanager.cpp
@@ -42,6 +42,10 @@ PulseManager::PulseManager () : pulse_X2Go_ ("/.x2go/pulse"),
   env_ = QProcessEnvironment::systemEnvironment ();
   env_.insert ("HOME", pulse_dir_.absolutePath ());
   env_.insert ("TEMP", pulse_dir_.absolutePath () + "/tmp");
+#ifdef Q_OS_WIN
+  env_.insert ("USERPROFILE", pulse_dir_.absolutePath ());
+  env_.insert ("USERNAME", "pulseuser");
+#endif // defined (Q_OS_WIN)
 }
 
 PulseManager::~PulseManager () {

--
Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email 
on /srv/git/code.x2go.org/x2goclient.git
_______________________________________________
x2go-commits mailing list
x2go-commits@lists.x2go.org
http://lists.x2go.org/listinfo/x2go-commits

Reply via email to