freebsd-ports/editors/xmlcopyeditor/files/patch-src_myipc.cpp
Tilman Keskinoz 7f5da8a286 Fix member initialization
PR:		222396
Submitted by:	Roger Leigh
Approved by:	maintainer
2018-03-09 17:31:05 +00:00

11 lines
275 B
C++

--- src/myipc.cpp.orig 2017-09-04 09:59:48 UTC
+++ src/myipc.cpp
@@ -46,7 +46,7 @@ wxConnectionBase *MyServer::OnAcceptConn
MyServerConnection::MyServerConnection()
: wxConnection()
- , mFrameWnd ( ( wxIntPtr ) NULL )
+ , mFrameWnd (0)
{
server_connection = this;
}