From 428425dc860ec2f459c6dd09945be525d2a55b9f Mon Sep 17 00:00:00 2001 From: SadE Date: Sat, 23 Jan 2021 19:17:01 +0100 Subject: [PATCH] Fix for #1118 : An UUID is now used to instantiate wxSingleInstanceChecker --- src/picotorrent/application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/picotorrent/application.cpp b/src/picotorrent/application.cpp index 19585fea..42d553eb 100644 --- a/src/picotorrent/application.cpp +++ b/src/picotorrent/application.cpp @@ -23,7 +23,7 @@ using pt::Application; Application::Application() : wxApp(), - m_singleInstance(std::make_unique()) + m_singleInstance(std::make_unique("584c8e47-d8a5-4e52-9165-c0650a85723a")) { SetProcessDPIAware(); }