Fixes for Unicode build.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27415 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Kevin Ollivier
2004-05-24 21:00:07 +00:00
parent 37699af5bb
commit 7eb8c6ee3e
2 changed files with 6 additions and 10 deletions

View File

@@ -10,16 +10,12 @@
/////////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__
#pragma implementation "wxWebKit.h"
#pragma implementation "webkit.h"
#endif
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif
@@ -109,7 +105,7 @@ bool wxWebKitCtrl::Create(wxWindow *parent,
{
m_currentURL = strURL;
m_pageTitle = "";
m_pageTitle = wxT("");
//still needed for wxCocoa??
/*
@@ -178,7 +174,7 @@ void wxWebKitCtrl::LoadURL(const wxString &url)
if( !m_webView )
return;
[[m_webView mainFrame] loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:[NSString stringWithCString:url.c_str()]]]];
[[m_webView mainFrame] loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:wxNSStringWithWxString(url)]]];
m_currentURL = url;
}