[X2Go-Commits] [x2goclient] 108/173: pulsemanager.cpp: add Windows stuff to initial env in constructor.

git-admin at x2go.org git-admin at x2go.org
Wed Jun 1 22:25:25 CEST 2016


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

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

commit a3c6f33bb18ba88c7b0816c5eb32867fd2385ec1
Author: Mihai Moldovan <ionic at 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 b58f1da..e8e6851 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -209,6 +209,7 @@ x2goclient (4.0.5.2-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.
 
   [ Mike DePaulo ]
   * New upstream release (4.0.5.2):
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


More information about the x2go-commits mailing list