1
0
Fork 0
forked from lthn/blockchain

fixed bug with crashing message box

This commit is contained in:
cryptozoidberg 2022-01-18 18:19:18 +01:00
parent cd644cc851
commit 50392b9e31
No known key found for this signature in database
GPG key ID: 22DEB97A54C6FDEC

View file

@ -825,8 +825,8 @@ bool MainWindow::init_ipc_server()
bool MainWindow::handle_ipc_event(const std::string& arguments)
{
std::string zzz = "Received IPC: " + arguments;
message_box(zzz.c_str());
std::string zzz = "Received IPC: " + arguments.c_str();
std::cout << zzz;//message_box(zzz.c_str());
handle_deeplink_click(arguments.c_str());