Hello community,
here is the log from the commit of package perl-Alien-wxWidgets for
openSUSE:Factory checked in at 2017-04-20 20:52:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Alien-wxWidgets (Old)
and /work/SRC/openSUSE:Factory/.perl-Alien-wxWidgets.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Alien-wxWidgets"
Thu Apr 20 20:52:38 2017 rev:6 rq:487659 version:0.68
Changes:
--------
---
/work/SRC/openSUSE:Factory/perl-Alien-wxWidgets/perl-Alien-wxWidgets.changes
2016-11-28 15:10:39.000000000 +0100
+++
/work/SRC/openSUSE:Factory/.perl-Alien-wxWidgets.new/perl-Alien-wxWidgets.changes
2017-04-20 20:52:40.201371531 +0200
@@ -1,0 +2,14 @@
+Tue Apr 11 05:01:27 UTC 2017 - [email protected]
+
+- updated to 0.68
+ see /usr/share/doc/packages/perl-Alien-wxWidgets/Changes
+
+ 0.68 Sat Apr 8 2017
+ - RT:120887 - patch from Jim Keenan for '.' no longer in@INC
+ - RT:94367 - allow ENV setting for wx-config
+ - Fix current OSX builds
+
+ 0.67 Tue Mar 10 2015
+ - pause indexing fix
+
+-------------------------------------------------------------------
Old:
----
Alien-wxWidgets-0.67.tar.gz
New:
----
Alien-wxWidgets-0.68.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-Alien-wxWidgets.spec ++++++
--- /var/tmp/diff_new_pack.NRYLec/_old 2017-04-20 20:52:41.001258423 +0200
+++ /var/tmp/diff_new_pack.NRYLec/_new 2017-04-20 20:52:41.001258423 +0200
@@ -1,7 +1,7 @@
#
# spec file for package perl-Alien-wxWidgets
#
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,18 +17,18 @@
Name: perl-Alien-wxWidgets
-Version: 0.67
+Version: 0.68
Release: 0
%define cpan_name Alien-wxWidgets
Summary: Building, Finding and Using Wxwidgets Binaries
License: Artistic-1.0 or GPL-1.0+
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Alien-wxWidgets/
-Source0:
http://www.cpan.org/authors/id/M/MD/MDOOTSON/%{cpan_name}-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/M/MD/MDOOTSON/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
Patch0: perl-Alien-wxWidgets-do_not_build_wxgtk.patch
-Patch1: perl-Alien-wxWidgets-ignore_cbuilder_version.patch
-Patch2: perl-Alien-wxWidgets-dump_sorted_config.patch
+Patch1: perl-Alien-wxWidgets-dump_sorted_config.patch
+Patch2: perl-Alien-wxWidgets-ignore_cbuilder_version.patch
# MANUAL
#BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@@ -49,14 +49,14 @@
# MANUAL END
%description
-Please see the Alien manpage for the manifesto of the Alien namespace.
+Please see Alien for the manifesto of the Alien namespace.
In short 'Alien::wxWidgets' can be used to detect and get configuration
settings from an installed wxWidgets.
%prep
%setup -q -n %{cpan_name}-%{version}
-find . -type f -print0 | xargs -0 chmod 644
+find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
%patch0
%patch1
%patch2
++++++ Alien-wxWidgets-0.67.tar.gz -> Alien-wxWidgets-0.68.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Alien-wxWidgets-0.67/Build.PL
new/Alien-wxWidgets-0.68/Build.PL
--- old/Alien-wxWidgets-0.67/Build.PL 2015-03-09 22:37:19.000000000 +0100
+++ new/Alien-wxWidgets-0.68/Build.PL 2017-04-08 18:06:00.000000000 +0200
@@ -3,7 +3,7 @@
BEGIN { our $NO_INIT = 1 }
use strict;
-use lib "lib", "inc";
+use lib "./lib", "./inc";
use My::Build;
use Config;
@@ -152,7 +152,19 @@
EOP
} else {
require My::Build::Base;
- my $wx_config = My::Build::Base->awx_path_search( 'wx-config' );
+
+ my $env_wxconfig = $ENV{WX_CONFIG};
+ if ( $env_wxconfig && !-e $env_wxconfig && $env_wxconfig !~ /wx-config$/ )
{
+ print STDERR qq(
+=============================================================================
+The specified environment WX_CONFIG does not appear to be a valid wx-config :
+$env_wxconfig
+==============================================================================
+ );
+ exit(1);
+ }
+
+ my $wx_config = $env_wxconfig || My::Build::Base->awx_path_search(
'wx-config' );
if( $wx_config ) {
my $ans = `$wx_config --version`;
if( $ans =~ /^[23]\./ ) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Alien-wxWidgets-0.67/Changes
new/Alien-wxWidgets-0.68/Changes
--- old/Alien-wxWidgets-0.67/Changes 2015-03-11 02:33:56.000000000 +0100
+++ new/Alien-wxWidgets-0.68/Changes 2017-04-08 19:47:24.000000000 +0200
@@ -1,5 +1,13 @@
Revision history for Perl extension Alien::wxWidgets.
+0.68 Sat Apr 8 2017
+ - RT:120887 - patch from Jim Keenan for '.' no longer in@INC
+ - RT:94367 - allow ENV setting for wx-config
+ - Fix current OSX builds
+
+0.67 Tue Mar 10 2015
+ - pause indexing fix
+
0.66 Tue Mar 10 2015
- add support for wxWidgets 3.0.1 and 3.0.2
- make default wxWidgets 3.0.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Alien-wxWidgets-0.67/MANIFEST
new/Alien-wxWidgets-0.68/MANIFEST
--- old/Alien-wxWidgets-0.67/MANIFEST 2014-11-02 20:02:16.000000000 +0100
+++ new/Alien-wxWidgets-0.68/MANIFEST 2017-04-08 17:32:14.000000000 +0200
@@ -93,6 +93,7 @@
patches/wxWidgets-2.9.0-magic.patch
patches/wxWidgets-2.9.0-msgdlg.patch
patches/wxWidgets-2.9.4-plugin.patch
+patches/wxWidgets-3.0.2-webkit.patch
README.txt
script/make_ppm.pl
t/01_load.t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Alien-wxWidgets-0.67/META.json
new/Alien-wxWidgets-0.68/META.json
--- old/Alien-wxWidgets-0.67/META.json 2015-03-11 02:42:38.000000000 +0100
+++ new/Alien-wxWidgets-0.68/META.json 2017-04-08 21:05:32.000000000 +0200
@@ -4,7 +4,7 @@
"Mattia Barbon <[email protected]>"
],
"dynamic_config" : 1,
- "generated_by" : "Module::Build version 0.4205",
+ "generated_by" : "Module::Build version 0.4222",
"license" : [
"perl_5"
],
@@ -36,7 +36,7 @@
"provides" : {
"Alien::wxWidgets" : {
"file" : "lib/Alien/wxWidgets.pm",
- "version" : "0.67"
+ "version" : "0.68"
},
"Alien::wxWidgets::Utility" : {
"file" : "lib/Alien/wxWidgets/Utility.pm",
@@ -55,7 +55,8 @@
"repository" : {
"url" : "http://svn.code.sf.net/p/wxperl/code/Alien-wxWidgets"
},
- "x_mailingList" : "http://lists.perl.org/list/wxperl-users.html"
+ "x_MailingList" : "http://lists.perl.org/list/wxperl-users.html"
},
- "version" : "0.67"
+ "version" : "0.68",
+ "x_serialization_backend" : "JSON::PP version 2.27300_01"
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Alien-wxWidgets-0.67/META.yml
new/Alien-wxWidgets-0.68/META.yml
--- old/Alien-wxWidgets-0.67/META.yml 2015-03-11 02:42:38.000000000 +0100
+++ new/Alien-wxWidgets-0.68/META.yml 2017-04-08 21:05:32.000000000 +0200
@@ -9,7 +9,7 @@
configure_requires:
Module::Build: '0.28'
dynamic_config: 1
-generated_by: 'Module::Build version 0.4205, CPAN::Meta::Converter version
2.140640'
+generated_by: 'Module::Build version 0.4222, CPAN::Meta::Converter version
2.150005'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -18,7 +18,7 @@
provides:
Alien::wxWidgets:
file: lib/Alien/wxWidgets.pm
- version: '0.67'
+ version: '0.68'
Alien::wxWidgets::Utility:
file: lib/Alien/wxWidgets/Utility.pm
version: '0.59'
@@ -26,9 +26,10 @@
Module::Pluggable: '2.6'
perl: '5.006'
resources:
+ MailingList: http://lists.perl.org/list/wxperl-users.html
bugtracker: http://rt.cpan.org/NoAuth/Bugs.html?Dist=Alien-wxWidgets
homepage: http://www.wxperl.it/
license: http://dev.perl.org/licenses/
- mailingList: http://lists.perl.org/list/wxperl-users.html
repository: http://svn.code.sf.net/p/wxperl/code/Alien-wxWidgets
-version: '0.67'
+version: '0.68'
+x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Alien-wxWidgets-0.67/Makefile.PL
new/Alien-wxWidgets-0.68/Makefile.PL
--- old/Alien-wxWidgets-0.67/Makefile.PL 2015-03-11 02:42:37.000000000
+0100
+++ new/Alien-wxWidgets-0.68/Makefile.PL 2017-04-08 21:05:32.000000000
+0200
@@ -1,4 +1,4 @@
-# Note: this file was auto-generated by Module::Build::Compat version 0.4205
+# Note: this file was auto-generated by Module::Build::Compat version 0.4222
require 5.006;
unless (eval "use Module::Build::Compat 0.02; 1" ) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Alien-wxWidgets-0.67/inc/My/Build/Base.pm
new/Alien-wxWidgets-0.68/inc/My/Build/Base.pm
--- old/Alien-wxWidgets-0.67/inc/My/Build/Base.pm 2014-03-08
14:04:15.000000000 +0100
+++ new/Alien-wxWidgets-0.68/inc/My/Build/Base.pm 2017-04-08
18:28:37.000000000 +0200
@@ -10,6 +10,10 @@
use Data::Dumper;
use File::Glob qw(bsd_glob);
use Carp;
+use lib '.';
+
+# Ensure deterministic output
+$Data::Dumper::Sortkeys = 1;
# use the system version of a module if present; in theory this could lead to
# compatibility problems (if the latest version of one of the dependencies,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/Alien-wxWidgets-0.67/inc/My/Build/MacOSX_wx_config.pm
new/Alien-wxWidgets-0.68/inc/My/Build/MacOSX_wx_config.pm
--- old/Alien-wxWidgets-0.67/inc/My/Build/MacOSX_wx_config.pm 2015-03-10
03:08:02.000000000 +0100
+++ new/Alien-wxWidgets-0.68/inc/My/Build/MacOSX_wx_config.pm 2017-04-08
18:23:51.000000000 +0200
@@ -48,7 +48,7 @@
return $extra_flags;
}
- my $darwinver = 0;
+ my $darwinver = 100;
if(`uname -r` =~ /^(\d+)\./) {
$darwinver = $1;
}
@@ -56,55 +56,26 @@
# we are determining extra flags
$extra_flags = '';
- # on Snow Leopard, and above force wxWidgets 2.8.x builds to be 32-bit;
- # force 2.9 builds to be 32 bit too if we have a 32 bit Perl
+ # Simplified build
- if( $darwinver >= 10
- && `sysctl hw.cpu64bit_capable` =~ /^hw.cpu64bit_capable: 1/
- && ( $self->awx_version_type == 2
- || $Config{ptrsize} == 4 ) ) {
-
+ if( $darwinver <= 9 ) { # Tiger && Leopard
print "Forcing wxWidgets build to 32 bit\n";
$extra_flags .= ' ' . join ' ', map { qq{$_="-arch
i386"} }
qw(CFLAGS CXXFLAGS LDFLAGS
OBJCFLAGS OBJCXXFLAGS);
+ } elsif( $darwinver == 10 ) { # Snow Leopard
+ # just find the right SDK and accept users arch flags
+ my $sdk1 = qq(/Developer/SDKs/MacOSX10.6.sdk);
+ my $sdk2 =
qq(/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.6.sdk);
+ my $macossdk = ( -d $sdk2 ) ? $sdk2 : $sdk1;
+ if( -d $macossdk ) {
+ $extra_flags .= qq( --with-macosx-version-min=10.6
--with-macosx-sdk=${macossdk});
+ }
+ } else {
+ # Lion and later - accept default SDK and set min version 10.7
+ $extra_flags .= qq( --with-macosx-version-min=10.7);
}
-
-# if ( $darwinver >= 13 ) {
-# # we can't currently build with Xcode 5 on Mavericks
-# my $xcodestring = qx(xcodebuild -version) || '';
-# if ($xcodestring =~ /Xcode\s+(\d+)/ ) {
-# my $xcodever = $1;
-# if ( $xcodever >= 5) {
-# print <<EOX;
-#=======================================================================
-#wxPerl does not currently support building on Mac OSX Mavericks and
-#above with Xcode 5.x or greater.
-#If you wish to develop using wxPerl on this machine you should remove
-#XCode 5.x and download Xcode 4.6.3 from the Apple developer site.
-#=======================================================================
-#EOX
-# exit 1;
-# }
-# }
-# }
-
- # on Snow Leopard and above, force use of available SDK and min versions
-
- if( $darwinver >= 10 ) {
-
- # SDK 10.7 will not work if we have SDK 10.8 installed too - so reverse
order
- for my $sdkversion ( qw( 10.9 10.8 10.7 10.6 ) ) {
- my $sdk1 = qq(/Developer/SDKs/MacOSX${sdkversion}.sdk);
- my $sdk2 =
qq(/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX${sdkversion}.sdk);
- my $macossdk = ( -d $sdk2 ) ? $sdk2 : $sdk1;
- if( -d $macossdk ) {
- my $macosmin = ( $sdkversion =~ /^10\.(8|7|6)$/ ) ? '10.6' :
'10.7';
- $extra_flags .= qq( --with-macosx-version-min=${macosmin}
--with-macosx-sdk=${macossdk});
- last;
- }
- }
- }
+
$extra_flags .= ' --enable-graphics_ctx';
@@ -121,7 +92,6 @@
}
}
-
return $extra_flags;
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Alien-wxWidgets-0.67/lib/Alien/wxWidgets.pm
new/Alien-wxWidgets-0.68/lib/Alien/wxWidgets.pm
--- old/Alien-wxWidgets-0.67/lib/Alien/wxWidgets.pm 2015-03-11
02:41:05.000000000 +0100
+++ new/Alien-wxWidgets-0.68/lib/Alien/wxWidgets.pm 2015-03-11
04:32:04.000000000 +0100
@@ -43,7 +43,7 @@
instantiate => 'config';
our $AUTOLOAD;
-our $VERSION = '0.67';
+our $VERSION = '0.68';
our %VALUES;
our $dont_remap;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Alien-wxWidgets-0.67/patches/data-3.0.2
new/Alien-wxWidgets-0.68/patches/data-3.0.2
--- old/Alien-wxWidgets-0.67/patches/data-3.0.2 2014-11-02 20:03:19.000000000
+0100
+++ new/Alien-wxWidgets-0.68/patches/data-3.0.2 2017-04-08 17:31:38.000000000
+0200
@@ -3,7 +3,7 @@
my $BASE = 'wxWidgets';
# $TYPE from Build.PL
-my @common = qw(wxWidgets-2.9.0-magic.patch );
+my @common = qw(wxWidgets-2.9.0-magic.patch wxWidgets-3.0.2-webkit.patch);
my $winsetuppatch = ( $FORCE_GTX ) ? 'wxMSW-3.0.1-setup_gctx.patch' :
'wxMSW-3.0.1-setup.patch';
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/Alien-wxWidgets-0.67/patches/wxWidgets-3.0.2-webkit.patch
new/Alien-wxWidgets-0.68/patches/wxWidgets-3.0.2-webkit.patch
--- old/Alien-wxWidgets-0.67/patches/wxWidgets-3.0.2-webkit.patch
1970-01-01 01:00:00.000000000 +0100
+++ new/Alien-wxWidgets-0.68/patches/wxWidgets-3.0.2-webkit.patch
2017-04-08 21:05:13.000000000 +0200
@@ -0,0 +1,169 @@
+diff -u include/wx/defs.h include/wx/defs.h
+--- include/wx/defs.h 2014-10-06 22:33:44.000000000 +0100
++++ include/wx/defs.h 2017-04-08 18:52:20.308109800 +0100
+@@ -3169,14 +3169,22 @@
+ DECLARE_WXCOCOA_OBJC_CLASS(UIEvent);
+ DECLARE_WXCOCOA_OBJC_CLASS(NSSet);
+ DECLARE_WXCOCOA_OBJC_CLASS(EAGLContext);
++DECLARE_WXCOCOA_OBJC_CLASS(UIWebView);
+
+ typedef WX_UIWindow WXWindow;
+ typedef WX_UIView WXWidget;
+ typedef WX_EAGLContext WXGLContext;
+ typedef WX_NSString* WXGLPixelFormat;
++typedef WX_UIWebView OSXWebViewPtr;
++
++#endif
+
++#if wxOSX_USE_COCOA_OR_CARBON
++DECLARE_WXCOCOA_OBJC_CLASS(WebView);
++typedef WX_WebView OSXWebViewPtr;
+ #endif
+
++
+ #endif /* __WXMAC__ */
+
+ /* ABX: check __WIN32__ instead of __WXMSW__ for the same MSWBase in any
Win32 port */
+diff -u include/wx/html/webkit.h include/wx/html/webkit.h
+--- include/wx/html/webkit.h 2014-10-06 22:33:44.000000000 +0100
++++ include/wx/html/webkit.h 2017-04-08 18:53:34.608334300 +0100
+@@ -18,7 +18,6 @@
+ #endif
+
+ #include "wx/control.h"
+-DECLARE_WXCOCOA_OBJC_CLASS(WebView);
+
+ //
----------------------------------------------------------------------------
+ // Web Kit Control
+@@ -107,7 +106,7 @@
+ wxString m_currentURL;
+ wxString m_pageTitle;
+
+- WX_WebView m_webView;
++ OSXWebViewPtr m_webView;
+
+ // we may use this later to setup our own mouse events,
+ // so leave it in for now.
+diff -u include/wx/osx/webview_webkit.h include/wx/osx/webview_webkit.h
+--- include/wx/osx/webview_webkit.h 2014-10-06 22:33:44.000000000 +0100
++++ include/wx/osx/webview_webkit.h 2017-04-08 18:56:04.314415300 +0100
+@@ -158,7 +158,7 @@
+ wxWindowID m_windowID;
+ wxString m_pageTitle;
+
+- wxObjCID m_webView;
++ OSXWebViewPtr m_webView;
+
+ // we may use this later to setup our own mouse events,
+ // so leave it in for now.
+diff -u src/osx/webview_webkit.mm src/osx/webview_webkit.mm
+--- src/osx/webview_webkit.mm 2014-10-06 22:33:44.000000000 +0100
++++ src/osx/webview_webkit.mm 2017-04-08 19:03:24.676146300 +0100
+@@ -296,7 +296,7 @@
+ wxWebViewWebKit* webKitWindow;
+ }
+
+-- initWithWxWindow: (wxWebViewWebKit*)inWindow;
++- (id)initWithWxWindow: (wxWebViewWebKit*)inWindow;
+
+ @end
+
+@@ -305,7 +305,7 @@
+ wxWebViewWebKit* webKitWindow;
+ }
+
+-- initWithWxWindow: (wxWebViewWebKit*)inWindow;
++- (id)initWithWxWindow: (wxWebViewWebKit*)inWindow;
+
+ @end
+
+@@ -314,7 +314,7 @@
+ wxWebViewWebKit* webKitWindow;
+ }
+
+-- initWithWxWindow: (wxWebViewWebKit*)inWindow;
++- (id)initWithWxWindow: (wxWebViewWebKit*)inWindow;
+
+ @end
+
+@@ -442,7 +442,7 @@
+ if ( !m_webView )
+ return;
+
+- [(WebView*)m_webView goBack];
++ [m_webView goBack];
+ }
+
+ void wxWebViewWebKit::GoForward()
+@@ -450,7 +450,7 @@
+ if ( !m_webView )
+ return;
+
+- [(WebView*)m_webView goForward];
++ [m_webView goForward];
+ }
+
+ void wxWebViewWebKit::Reload(wxWebViewReloadFlags flags)
+@@ -849,7 +849,7 @@
+ if ( !m_webView )
+ return;
+
+- [(WebView*)m_webView cut:m_webView];
++ [m_webView cut:m_webView];
+ }
+
+ void wxWebViewWebKit::Copy()
+@@ -857,7 +857,7 @@
+ if ( !m_webView )
+ return;
+
+- [(WebView*)m_webView copy:m_webView];
++ [m_webView copy:m_webView];
+ }
+
+ void wxWebViewWebKit::Paste()
+@@ -865,7 +865,7 @@
+ if ( !m_webView )
+ return;
+
+- [(WebView*)m_webView paste:m_webView];
++ [m_webView paste:m_webView];
+ }
+
+ void wxWebViewWebKit::DeleteSelection()
+@@ -873,7 +873,7 @@
+ if ( !m_webView )
+ return;
+
+- [(WebView*)m_webView deleteSelection];
++ [m_webView deleteSelection];
+ }
+
+ bool wxWebViewWebKit::HasSelection() const
+@@ -1007,7 +1007,7 @@
+
+ @implementation WebViewLoadDelegate
+
+-- initWithWxWindow: (wxWebViewWebKit*)inWindow
++- (id)initWithWxWindow: (wxWebViewWebKit*)inWindow
+ {
+ [super init];
+ webKitWindow = inWindow; // non retained
+@@ -1197,7 +1197,7 @@
+
+ @implementation WebViewPolicyDelegate
+
+-- initWithWxWindow: (wxWebViewWebKit*)inWindow
++- (id)initWithWxWindow: (wxWebViewWebKit*)inWindow
+ {
+ [super init];
+ webKitWindow = inWindow; // non retained
+@@ -1335,7 +1335,7 @@
+
+ @implementation WebViewUIDelegate
+
+-- initWithWxWindow: (wxWebViewWebKit*)inWindow
++- (id)initWithWxWindow: (wxWebViewWebKit*)inWindow
+ {
+ [super init];
+ webKitWindow = inWindow; // non retained