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

git-admin at x2go.org git-admin at x2go.org
Mon Nov 30 05:08:11 CET 2015


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

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

commit 81cb82d2de963460edd970ae416e7ba248d8570b
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 61aec77..95eb7aa 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -184,6 +184,7 @@ x2goclient (4.0.5.1-0x2go1) UNRELEASED; urgency=low
     - 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.
 
   [ Oleksandr Shneyder ]
   * New upstream release (4.0.5.1):
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