Remove some now unused history variables.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@68394 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Steve Lamerton 2011-07-25 10:46:46 +00:00
parent 7d3f6b4ded
commit 205defae89
2 changed files with 0 additions and 19 deletions

View File

@ -133,8 +133,6 @@ private:
wxAutomationObject m_ie;
IWebBrowser2* m_webBrowser;
DWORD m_dwCookie;
bool m_canNavigateBack;
bool m_canNavigateForward;
//We store the current zoom type;
wxWebViewZoomType m_zoomType;

View File

@ -72,8 +72,6 @@ bool wxWebViewIE::Create(wxWindow* parent,
}
m_webBrowser = NULL;
m_canNavigateBack = false;
m_canNavigateForward = false;
m_isBusy = false;
m_historyLoadingFromList = false;
m_historyEnabled = true;
@ -949,21 +947,6 @@ void wxWebViewIE::onActiveXEvent(wxActiveXEvent& evt)
HandleWindowEvent(event);
break;
}
case DISPID_COMMANDSTATECHANGE:
{
long commandId = evt[0].GetLong();
bool enable = evt[1].GetBool();
if (commandId == CSC_NAVIGATEBACK)
{
m_canNavigateBack = enable;
}
else if (commandId == CSC_NAVIGATEFORWARD)
{
m_canNavigateForward = enable;
}
break;
}
case DISPID_NEWWINDOW3:
{
wxString url = evt[4].GetString();