- deleted some never-used stub code
* WebView.subproj/WebView.m:
* WebView.subproj/WebViewInternal.h:
* WebView.subproj/WebViewPrivate.h:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@9531
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2005-06-29 John Sullivan <sullivan@apple.com>
+
+ Reviewed by Kevin.
+
+ - deleted some never-used stub code
+
+ * WebView.subproj/WebView.m:
+ * WebView.subproj/WebViewInternal.h:
+ * WebView.subproj/WebViewPrivate.h:
+
2005-06-27 Justin Garcia <justin.garcia@apple.com>
Patch by Anders Carlsson <andersca@mac.com>
}
}
-- (BOOL)isContinuousGrammarCheckingEnabled
-{
- return _private->continuousGrammarCheckingEnabled && [self _continuousCheckingAllowed];
-}
-
-- (void)setContinuousGrammarCheckingEnabled:(BOOL)flag
-{
- _private->continuousGrammarCheckingEnabled = flag;
- if ([self isContinuousGrammarCheckingEnabled]) {
- [self _preflightSpellChecker];
- } else {
- // FIXME: Put code here to remove underlines for bad grammar.
- }
-}
-
-- (void)toggleContinuousGrammarChecking:(id)sender
-{
- if ([self isEditable]) {
- [self setContinuousGrammarCheckingEnabled:![self isContinuousGrammarCheckingEnabled]];
- }
-}
-
-
- (BOOL)canMakeTextStandardSize
{
if ([[self mainFrame] dataSource] == nil) {
int spellCheckerDocumentTag;
BOOL continuousSpellCheckingEnabled;
- BOOL continuousGrammarCheckingEnabled;
BOOL smartInsertDeleteEnabled;
BOOL dashboardBehaviorAlwaysSendMouseEventsToAllWindows;
- (IBAction)toggleContinuousSpellChecking:(id)sender;
-- (BOOL)isContinuousGrammarCheckingEnabled;
-- (void)setContinuousGrammarCheckingEnabled:(BOOL)flag;
-- (void)toggleContinuousGrammarChecking:(id)sender;
-
- (void)toggleSmartInsertDelete:(id)sender;
- (BOOL)canMakeTextStandardSize;