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:
authorArthur Schiwon <blizzz@owncloud.com>2015-11-27 16:46:39 +0300
committerArthur Schiwon <blizzz@owncloud.com>2015-11-27 17:19:39 +0300
commitd62c51890e8a7aa7e5abba398f5f1c56bf9fcca0 (patch)
treebc14d211d98b6a72215decf0e1dc8824abbd591d /src/gui/sharee.cpp
parent10707c828824b0bf8c31d55f8d113ff6d6852017 (diff)
show displaynames of users in share dialog instead of userid
Diffstat (limited to 'src/gui/sharee.cpp')
-rw-r--r--src/gui/sharee.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/sharee.cpp b/src/gui/sharee.cpp
index 04fddff9d..08aae3ccc 100644
--- a/src/gui/sharee.cpp
+++ b/src/gui/sharee.cpp
@@ -137,7 +137,7 @@ QSharedPointer<Sharee> ShareeModel::parseSharee(const QVariantMap &data)
const QString shareWith = data.value("value").toMap().value("shareWith").toString();
Sharee::Type type = (Sharee::Type)data.value("value").toMap().value("shareType").toInt();
- return QSharedPointer<Sharee>(new Sharee(shareWith, shareWith, type));
+ return QSharedPointer<Sharee>(new Sharee(shareWith, displayName, type));
}
/* Set the new sharee