summaryrefslogtreecommitdiffstats
path: root/WebKit/wx
diff options
context:
space:
mode:
Diffstat (limited to 'WebKit/wx')
-rw-r--r--WebKit/wx/ChangeLog14
-rw-r--r--WebKit/wx/WebKitSupport/EditorClientWx.cpp6
-rw-r--r--WebKit/wx/WebKitSupport/EditorClientWx.h4
3 files changed, 5 insertions, 19 deletions
diff --git a/WebKit/wx/ChangeLog b/WebKit/wx/ChangeLog
index ee07fbd..2b55577 100644
--- a/WebKit/wx/ChangeLog
+++ b/WebKit/wx/ChangeLog
@@ -1,17 +1,3 @@
-2010-12-01 Jia Pu <jpu@apple.com>
-
- Reviewed by Darin Adler.
-
- Support multiple correction candidates panel for misspelled word on Mac OS X.
- https://bugs.webkit.org/show_bug.cgi?id=50137
- <rdar://problem/8568059>
-
- Adopted new function signature defined in base class.
-
- * WebKitSupport/EditorClientWx.cpp:
- (WebCore::EditorClientWx::getGuessesForWord):
- * WebKitSupport/EditorClientWx.h:
-
2010-11-24 Patrick Gansterer <paroga@webkit.org>
Reviewed by Csaba Osztrogonác.
diff --git a/WebKit/wx/WebKitSupport/EditorClientWx.cpp b/WebKit/wx/WebKitSupport/EditorClientWx.cpp
index 5601364..59e2fd4 100644
--- a/WebKit/wx/WebKitSupport/EditorClientWx.cpp
+++ b/WebKit/wx/WebKitSupport/EditorClientWx.cpp
@@ -542,9 +542,9 @@ bool EditorClientWx::spellingUIIsShowing()
return false;
}
-void EditorClientWx::getGuessesForWord(const String& word, const String& context, Vector<String>& guesses)
-{
- notImplemented();
+void EditorClientWx::getGuessesForWord(const String&, Vector<String>& guesses)
+{
+ notImplemented();
}
String EditorClientWx::getAutoCorrectSuggestionForMisspelledWord(const WTF::String&)
diff --git a/WebKit/wx/WebKitSupport/EditorClientWx.h b/WebKit/wx/WebKitSupport/EditorClientWx.h
index 35a95ab..be5c98a 100644
--- a/WebKit/wx/WebKitSupport/EditorClientWx.h
+++ b/WebKit/wx/WebKitSupport/EditorClientWx.h
@@ -107,9 +107,9 @@ public:
virtual void updateSpellingUIWithMisspelledWord(const String&);
virtual void showSpellingUI(bool show);
virtual bool spellingUIIsShowing();
- virtual void getGuessesForWord(const String& word, const String& context, Vector<String>& guesses);
+ virtual void getGuessesForWord(const String&, Vector<String>& guesses);
virtual String getAutoCorrectSuggestionForMisspelledWord(const WTF::String&);
-
+
virtual void willSetInputMethodState();
virtual void setInputMethodState(bool enabled);