Add undo / redo support to OSX WebKit.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@68555 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Steve Lamerton
2011-08-05 13:17:19 +00:00
parent 211da8a57d
commit 6368d96506
2 changed files with 24 additions and 4 deletions

View File

@@ -92,10 +92,10 @@ public:
virtual void LoadHistoryItem(wxSharedPtr<wxWebHistoryItem> WXUNUSED(item)) {}
//Undo / redo functionality
virtual bool CanUndo() { return false; }
virtual bool CanRedo() { return false; }
virtual void Undo() {}
virtual void Redo() {}
virtual bool CanUndo();
virtual bool CanRedo();
virtual void Undo();
virtual void Redo();
//Clipboard functions
virtual bool CanCut() { return false; }