summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/manager/dp_activepackages.cxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2017-02-17 19:06:24 +0200
committerTor Lillqvist <tml@collabora.com>2017-02-17 18:41:19 +0000
commitb57d51e32fb85e9cde64f85719725253162c42e4 (patch)
treeafe75470b9fc3c12a3d240577b07042985882675 /desktop/source/deployment/manager/dp_activepackages.cxx
parentc910d1dae1a9fcf0591098244debc863dd59618a (diff)
Drop :: prefix from std in [de]*/
Change-Id: I3247894fe022dce7f0aa351bd85fefcd7c545dd4 Reviewed-on: https://gerrit.libreoffice.org/34377 Reviewed-by: Tor Lillqvist <tml@collabora.com> Tested-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'desktop/source/deployment/manager/dp_activepackages.cxx')
-rw-r--r--desktop/source/deployment/manager/dp_activepackages.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/deployment/manager/dp_activepackages.cxx b/desktop/source/deployment/manager/dp_activepackages.cxx
index c9234ae10735..410c0aab528a 100644
--- a/desktop/source/deployment/manager/dp_activepackages.cxx
+++ b/desktop/source/deployment/manager/dp_activepackages.cxx
@@ -169,7 +169,7 @@ ActivePackages::Entries ActivePackages::getEntries() const {
{
if (!i->first.isEmpty() && i->first[0] == separator) {
es.push_back(
- ::std::make_pair(
+ std::make_pair(
OUString(
i->first.getStr() + 1, i->first.getLength() - 1,
RTL_TEXTENCODING_UTF8),
@@ -178,7 +178,7 @@ ActivePackages::Entries ActivePackages::getEntries() const {
OUString fn(
OStringToOUString(i->first, RTL_TEXTENCODING_UTF8));
es.push_back(
- ::std::make_pair(
+ std::make_pair(
::dp_misc::generateLegacyIdentifier(fn),
decodeOldData(fn, i->second)));
}