diff options
| author | MarcoFalke <[email protected]> | 2018-08-13 16:13:29 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-08-24 08:34:38 -0400 |
| commit | ddddce0e46e73d4ca369f2ce9696231cc579e1f9 (patch) | |
| tree | b4242246762d8ff5c2351925ee8907b4dd232611 /src/noui.cpp | |
| parent | Merge #13634: ui: Compile boost::signals2 only once (diff) | |
| download | discoin-ddddce0e46e73d4ca369f2ce9696231cc579e1f9.tar.xz discoin-ddddce0e46e73d4ca369f2ce9696231cc579e1f9.zip | |
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 e6d01e7b2..3a1ec2d05 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; |