adding correct return type
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76234 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -376,7 +376,7 @@ inline int wxNavTypeFromWebNavType(int type){
|
|||||||
wxWebKitCtrl* webKitWindow;
|
wxWebKitCtrl* webKitWindow;
|
||||||
}
|
}
|
||||||
|
|
||||||
- initWithWxWindow: (wxWebKitCtrl*)inWindow;
|
- (id)initWithWxWindow: (wxWebKitCtrl*)inWindow;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
@@ -385,7 +385,7 @@ inline int wxNavTypeFromWebNavType(int type){
|
|||||||
wxWebKitCtrl* webKitWindow;
|
wxWebKitCtrl* webKitWindow;
|
||||||
}
|
}
|
||||||
|
|
||||||
- initWithWxWindow: (wxWebKitCtrl*)inWindow;
|
- (id)initWithWxWindow: (wxWebKitCtrl*)inWindow;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
@@ -394,7 +394,7 @@ inline int wxNavTypeFromWebNavType(int type){
|
|||||||
wxWebKitCtrl* webKitWindow;
|
wxWebKitCtrl* webKitWindow;
|
||||||
}
|
}
|
||||||
|
|
||||||
- initWithWxWindow: (wxWebKitCtrl*)inWindow;
|
- (id)initWithWxWindow: (wxWebKitCtrl*)inWindow;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
@@ -806,7 +806,7 @@ void wxWebKitCtrl::MacVisibilityChanged(){
|
|||||||
|
|
||||||
@implementation MyFrameLoadMonitor
|
@implementation MyFrameLoadMonitor
|
||||||
|
|
||||||
- initWithWxWindow: (wxWebKitCtrl*)inWindow
|
- (id)initWithWxWindow: (wxWebKitCtrl*)inWindow
|
||||||
{
|
{
|
||||||
self = [super init];
|
self = [super init];
|
||||||
webKitWindow = inWindow; // non retained
|
webKitWindow = inWindow; // non retained
|
||||||
@@ -887,7 +887,7 @@ void wxWebKitCtrl::MacVisibilityChanged(){
|
|||||||
|
|
||||||
@implementation MyPolicyDelegate
|
@implementation MyPolicyDelegate
|
||||||
|
|
||||||
- initWithWxWindow: (wxWebKitCtrl*)inWindow
|
- (id)initWithWxWindow: (wxWebKitCtrl*)inWindow
|
||||||
{
|
{
|
||||||
self = [super init];
|
self = [super init];
|
||||||
webKitWindow = inWindow; // non retained
|
webKitWindow = inWindow; // non retained
|
||||||
@@ -938,7 +938,7 @@ void wxWebKitCtrl::MacVisibilityChanged(){
|
|||||||
|
|
||||||
@implementation MyUIDelegate
|
@implementation MyUIDelegate
|
||||||
|
|
||||||
- initWithWxWindow: (wxWebKitCtrl*)inWindow
|
- (id)initWithWxWindow: (wxWebKitCtrl*)inWindow
|
||||||
{
|
{
|
||||||
self = [super init];
|
self = [super init];
|
||||||
webKitWindow = inWindow; // non retained
|
webKitWindow = inWindow; // non retained
|
||||||
|
@@ -309,7 +309,7 @@ DEFINE_ONE_SHOT_HANDLER_GETTER( wxWebViewWebKitEventHandler )
|
|||||||
wxWebViewWebKit* webKitWindow;
|
wxWebViewWebKit* webKitWindow;
|
||||||
}
|
}
|
||||||
|
|
||||||
- initWithWxWindow: (wxWebViewWebKit*)inWindow;
|
- (id)initWithWxWindow: (wxWebViewWebKit*)inWindow;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
@@ -318,7 +318,7 @@ DEFINE_ONE_SHOT_HANDLER_GETTER( wxWebViewWebKitEventHandler )
|
|||||||
wxWebViewWebKit* webKitWindow;
|
wxWebViewWebKit* webKitWindow;
|
||||||
}
|
}
|
||||||
|
|
||||||
- initWithWxWindow: (wxWebViewWebKit*)inWindow;
|
- (id)initWithWxWindow: (wxWebViewWebKit*)inWindow;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
@@ -327,7 +327,7 @@ DEFINE_ONE_SHOT_HANDLER_GETTER( wxWebViewWebKitEventHandler )
|
|||||||
wxWebViewWebKit* webKitWindow;
|
wxWebViewWebKit* webKitWindow;
|
||||||
}
|
}
|
||||||
|
|
||||||
- initWithWxWindow: (wxWebViewWebKit*)inWindow;
|
- (id)initWithWxWindow: (wxWebViewWebKit*)inWindow;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
@@ -1033,7 +1033,7 @@ void wxWebViewWebKit::RegisterHandler(wxSharedPtr<wxWebViewHandler> handler)
|
|||||||
|
|
||||||
@implementation WebViewLoadDelegate
|
@implementation WebViewLoadDelegate
|
||||||
|
|
||||||
- initWithWxWindow: (wxWebViewWebKit*)inWindow
|
- (id)initWithWxWindow: (wxWebViewWebKit*)inWindow
|
||||||
{
|
{
|
||||||
[super init];
|
[super init];
|
||||||
webKitWindow = inWindow; // non retained
|
webKitWindow = inWindow; // non retained
|
||||||
@@ -1223,7 +1223,7 @@ wxString nsErrorToWxHtmlError(NSError* error, wxWebViewNavigationError* out)
|
|||||||
|
|
||||||
@implementation WebViewPolicyDelegate
|
@implementation WebViewPolicyDelegate
|
||||||
|
|
||||||
- initWithWxWindow: (wxWebViewWebKit*)inWindow
|
- (id)initWithWxWindow: (wxWebViewWebKit*)inWindow
|
||||||
{
|
{
|
||||||
[super init];
|
[super init];
|
||||||
webKitWindow = inWindow; // non retained
|
webKitWindow = inWindow; // non retained
|
||||||
@@ -1363,7 +1363,7 @@ wxString nsErrorToWxHtmlError(NSError* error, wxWebViewNavigationError* out)
|
|||||||
|
|
||||||
@implementation WebViewUIDelegate
|
@implementation WebViewUIDelegate
|
||||||
|
|
||||||
- initWithWxWindow: (wxWebViewWebKit*)inWindow
|
- (id)initWithWxWindow: (wxWebViewWebKit*)inWindow
|
||||||
{
|
{
|
||||||
[super init];
|
[super init];
|
||||||
webKitWindow = inWindow; // non retained
|
webKitWindow = inWindow; // non retained
|
||||||
|
Reference in New Issue
Block a user