Remove now unused GetSelection from the OSX WebKit backend.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@68556 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Steve Lamerton
2011-08-05 13:25:30 +00:00
parent 6368d96506
commit 2f70baea2f
2 changed files with 0 additions and 11 deletions

View File

@@ -128,8 +128,6 @@ public:
void SetScrollPos(int pos); void SetScrollPos(int pos);
int GetScrollPos(); int GetScrollPos();
wxString GetSelection();
bool CanIncreaseTextSize(); bool CanIncreaseTextSize();
void IncreaseTextSize(); void IncreaseTextSize();
bool CanDecreaseTextSize(); bool CanDecreaseTextSize();

View File

@@ -568,15 +568,6 @@ wxString wxWebViewWebKit::GetPageSource()
return wxEmptyString; return wxEmptyString;
} }
wxString wxWebViewWebKit::GetSelection()
{
if ( !m_webView )
return wxEmptyString;
NSString* selectedText = [[m_webView selectedDOMRange] toString];
return wxStringWithNSString( selectedText );
}
bool wxWebViewWebKit::CanIncreaseTextSize() bool wxWebViewWebKit::CanIncreaseTextSize()
{ {
if ( !m_webView ) if ( !m_webView )