Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 9 Mar 2018 17:31:05 +0000 (UTC)
From:      Tilman Keskinoz <arved@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r463980 - head/editors/xmlcopyeditor/files
Message-ID:  <201803091731.w29HV538004695@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;
+ }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803091731.w29HV538004695>