signals: use an alias for the boost::signals2 namespace

The next commit will add a real implementation in this namespace.
This commit is contained in:
Cory Fields
2022-09-26 21:13:15 +00:00
parent 9ade3929aa
commit edc2978058
10 changed files with 35 additions and 33 deletions

View File

@@ -13,9 +13,9 @@
#include <string>
/** Store connections so we can disconnect them when suppressing output */
boost::signals2::connection noui_ThreadSafeMessageBoxConn;
boost::signals2::connection noui_ThreadSafeQuestionConn;
boost::signals2::connection noui_InitMessageConn;
btcsignals::connection noui_ThreadSafeMessageBoxConn;
btcsignals::connection noui_ThreadSafeQuestionConn;
btcsignals::connection noui_InitMessageConn;
bool noui_ThreadSafeMessageBox(const bilingual_str& message, unsigned int style)
{