svn commit: r463980 - head/editors/xmlcopyeditor/files

Tilman Keskinoz arved at FreeBSD.org
Fri Mar 9 17:31:06 UTC 2018


Author: arved
Date: Fri Mar  9 17:31:05 2018
New Revision: 463980
URL: https://svnweb.freebsd.org/changeset/ports/463980

Log:
  Fix member initialization
  
  PR:		222396
  Submitted by:	Roger Leigh
  Approved by:	maintainer

Added:
  head/editors/xmlcopyeditor/files/patch-src_myipc.cpp   (contents, props changed)

Added: head/editors/xmlcopyeditor/files/patch-src_myipc.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/editors/xmlcopyeditor/files/patch-src_myipc.cpp	Fri Mar  9 17:31:05 2018	(r463980)
@@ -0,0 +1,11 @@
+--- 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;
+ }


More information about the svn-ports-all mailing list