Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Molkentin <danimo@owncloud.com>2014-10-24 01:46:17 +0400
committerDaniel Molkentin <danimo@owncloud.com>2014-10-24 01:46:17 +0400
commit3c7ff97ed40d0550cd0091941d7dfc37b824e5d9 (patch)
tree9790d76ffa4b03cdf20f0ad769c485629c5c34b4 /src/mirall
parent2120ff8037ca4558c3183375c23074ca26cd61d3 (diff)
SocketAPI: Don't use a theme dependent name for now
We will revert this once #2388 is implemented
Diffstat (limited to 'src/mirall')
-rw-r--r--src/mirall/socketapi.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mirall/socketapi.cpp b/src/mirall/socketapi.cpp
index d0806e139..0e239ed81 100644
--- a/src/mirall/socketapi.cpp
+++ b/src/mirall/socketapi.cpp
@@ -75,7 +75,11 @@ SocketApi::SocketApi(QObject* parent)
if (Utility::isWindows()) {
socketPath = QLatin1String("\\\\.\\pipe\\")
- + Theme::instance()->appName();
+ + QLatin1String("ownCloud");
+ // TODO: once the windows extension supports multiple
+ // client connections, switch back to the theme name
+ // See issue #2388
+ // + Theme::instance()->appName();
} else if (Utility::isMac()) {
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
// Always using Qt5 on OS X