diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-08-13 16:13:29 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-08-24 08:34:38 -0400 |
commit | ddddce0e46e73d4ca369f2ce9696231cc579e1f9 (patch) | |
tree | b4242246762d8ff5c2351925ee8907b4dd232611 /src/noui.cpp | |
parent | ddc3ec92b0e655a3da21ac2e85ec2e7ecb66c65b (diff) |
util: Replace boost::signals2 with std::function
Diffstat (limited to 'src/noui.cpp')
-rw-r--r-- | src/noui.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/noui.cpp b/src/noui.cpp index e6d01e7b26..3a1ec2d050 100644 --- a/src/noui.cpp +++ b/src/noui.cpp @@ -12,6 +12,8 @@ #include <stdint.h> #include <string> +#include <boost/signals2/connection.hpp> + static bool noui_ThreadSafeMessageBox(const std::string& message, const std::string& caption, unsigned int style) { bool fSecure = style & CClientUIInterface::SECURE; |