forked from lthn/blockchain
fixed bug with crashing message box
This commit is contained in:
parent
cd644cc851
commit
50392b9e31
1 changed files with 2 additions and 2 deletions
|
|
@ -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());
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue