| Server IP : 82.208.35.60 / Your IP : 216.73.216.238 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/deskutils/maliit-framework/files/ |
Upload File : |
--- src/mimonscreenplugins.cpp.orig 2021-06-28 06:11:15 UTC
+++ src/mimonscreenplugins.cpp
@@ -20,9 +20,9 @@
#include <QDebug>
#include <algorithm>
-#include <tr1/functional>
+#include <functional>
-using namespace std::tr1::placeholders;
+using namespace std::placeholders;
namespace
{
@@ -117,10 +117,10 @@ bool MImOnScreenPlugins::isEnabled(const QString &plug
std::remove_copy_if(mEnabledSubViews.begin(), mEnabledSubViews.end(),
std::back_inserter(mEnabledAndAvailableSubViews),
- std::tr1::bind(&MImOnScreenPlugins::isSubViewUnavailable, this, _1));
+ std::bind(&MImOnScreenPlugins::isSubViewUnavailable, this, _1));
return std::find_if(mEnabledAndAvailableSubViews.begin(), mEnabledAndAvailableSubViews.end(),
- std::tr1::bind(equalPlugin, _1, plugin)) != mEnabledAndAvailableSubViews.end();
+ std::bind(equalPlugin, _1, plugin)) != mEnabledAndAvailableSubViews.end();
}
bool MImOnScreenPlugins::isSubViewEnabled(const SubView &subView) const
@@ -137,7 +137,7 @@ QList<MImOnScreenPlugins::SubView> MImOnScreenPlugins:
{
QList<MImOnScreenPlugins::SubView> result;
std::remove_copy_if(mEnabledSubViews.begin(), mEnabledSubViews.end(),
- std::back_inserter(result), std::tr1::bind(notEqualPlugin, _1, plugin));
+ std::back_inserter(result), std::bind(notEqualPlugin, _1, plugin));
return result;
}