diff options
author | Khem Raj <raj.khem@gmail.com> | 2019-01-31 22:22:41 -0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2019-02-14 17:40:27 +0000 |
commit | 6713882563f4622ac92b87b4e95830b2556284bf (patch) | |
tree | 5274cab0bce7dbbc491b8a61f2f9e486a7804e34 /recipes-qt/maliit/maliit-plugins-qt5/0001-Do-not-use-tr1-namespace.patch | |
parent | 9a83f2d9a69988c2805003a5f9e26e1038deface (diff) | |
download | meta-qt5-6713882563f4622ac92b87b4e95830b2556284bf.tar.gz |
maliit-framework,maliit-plugins: Fix build with libc++
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'recipes-qt/maliit/maliit-plugins-qt5/0001-Do-not-use-tr1-namespace.patch')
-rw-r--r-- | recipes-qt/maliit/maliit-plugins-qt5/0001-Do-not-use-tr1-namespace.patch | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/recipes-qt/maliit/maliit-plugins-qt5/0001-Do-not-use-tr1-namespace.patch b/recipes-qt/maliit/maliit-plugins-qt5/0001-Do-not-use-tr1-namespace.patch new file mode 100644 index 00000000..e5525379 --- /dev/null +++ b/recipes-qt/maliit/maliit-plugins-qt5/0001-Do-not-use-tr1-namespace.patch | |||
@@ -0,0 +1,58 @@ | |||
1 | From 19cc10dc4378e9eda15b58f3673f686c4ff845e2 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Thu, 31 Jan 2019 22:17:56 -0800 | ||
4 | Subject: [PATCH] Do not use tr1 namespace | ||
5 | |||
6 | This is not a standard in C++11 | ||
7 | |||
8 | Upstream-Status: Pending | ||
9 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
10 | --- | ||
11 | maliit-keyboard/lib/logic/layouthelper.cpp | 16 ++++++++-------- | ||
12 | 1 file changed, 8 insertions(+), 8 deletions(-) | ||
13 | |||
14 | diff --git a/maliit-keyboard/lib/logic/layouthelper.cpp b/maliit-keyboard/lib/logic/layouthelper.cpp | ||
15 | index a8bd995f..f694e819 100644 | ||
16 | --- a/maliit-keyboard/lib/logic/layouthelper.cpp | ||
17 | +++ b/maliit-keyboard/lib/logic/layouthelper.cpp | ||
18 | @@ -31,7 +31,7 @@ | ||
19 | */ | ||
20 | |||
21 | #include <algorithm> | ||
22 | -#include <tr1/functional> | ||
23 | +#include <functional> | ||
24 | |||
25 | #include "layouthelper.h" | ||
26 | #include "coreutils.h" | ||
27 | @@ -76,7 +76,7 @@ struct KeyPredicate | ||
28 | |||
29 | } // namespace | ||
30 | |||
31 | -typedef std::tr1::function<void(const KeyArea &, const KeyOverrides &)> EmitFunc; | ||
32 | +typedef std::function<void(const KeyArea &, const KeyOverrides &)> EmitFunc; | ||
33 | |||
34 | class LayoutHelperPrivate | ||
35 | { | ||
36 | @@ -468,13 +468,13 @@ void LayoutHelper::onKeysOverriden(const KeyOverrides &overriden_keys, | ||
37 | d->overriden_keys = overriden_keys; | ||
38 | } | ||
39 | |||
40 | - using std::tr1::placeholders::_1; | ||
41 | - using std::tr1::placeholders::_2; | ||
42 | + using std::placeholders::_1; | ||
43 | + using std::placeholders::_2; | ||
44 | |||
45 | - d->overrideCheck(changed_ids, d->left, std::tr1::bind(&LayoutHelper::leftPanelChanged, this, _1, _2)); | ||
46 | - d->overrideCheck(changed_ids, d->right, std::tr1::bind(&LayoutHelper::rightPanelChanged, this, _1, _2)); | ||
47 | - d->overrideCheck(changed_ids, d->center, std::tr1::bind(&LayoutHelper::centerPanelChanged, this, _1, _2)); | ||
48 | - d->overrideCheck(changed_ids, d->extended, std::tr1::bind(&LayoutHelper::extendedPanelChanged, this, _1, _2)); | ||
49 | + d->overrideCheck(changed_ids, d->left, std::bind(&LayoutHelper::leftPanelChanged, this, _1, _2)); | ||
50 | + d->overrideCheck(changed_ids, d->right, std::bind(&LayoutHelper::rightPanelChanged, this, _1, _2)); | ||
51 | + d->overrideCheck(changed_ids, d->center, std::bind(&LayoutHelper::centerPanelChanged, this, _1, _2)); | ||
52 | + d->overrideCheck(changed_ids, d->extended, std::bind(&LayoutHelper::extendedPanelChanged, this, _1, _2)); | ||
53 | } | ||
54 | |||
55 | }} // namespace Logic, MaliitKeyboard | ||
56 | -- | ||
57 | 2.20.1 | ||
58 | |||