[webkit-changes] cvs commit: WebKit/WebView.subproj WebView.m
WebViewInternal.h WebViewPrivate.h
John
sullivan at opensource.apple.com
Wed Jun 29 15:53:52 PDT 2005
sullivan 05/06/29 15:53:52
Modified: . ChangeLog
WebView.subproj WebView.m WebViewInternal.h WebViewPrivate.h
Log:
Reviewed by Kevin.
- deleted some never-used stub code
* WebView.subproj/WebView.m:
* WebView.subproj/WebViewInternal.h:
* WebView.subproj/WebViewPrivate.h:
Revision Changes Path
1.3207 +10 -0 WebKit/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/WebKit/ChangeLog,v
retrieving revision 1.3206
retrieving revision 1.3207
diff -u -r1.3206 -r1.3207
--- ChangeLog 27 Jun 2005 20:23:31 -0000 1.3206
+++ ChangeLog 29 Jun 2005 22:53:44 -0000 1.3207
@@ -1,3 +1,13 @@
+2005-06-29 John Sullivan <sullivan at 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 at apple.com>
Patch by Anders Carlsson <andersca at mac.com>
1.290 +0 -23 WebKit/WebView.subproj/WebView.m
Index: WebView.m
===================================================================
RCS file: /cvs/root/WebKit/WebView.subproj/WebView.m,v
retrieving revision 1.289
retrieving revision 1.290
diff -u -r1.289 -r1.290
--- WebView.m 27 Jun 2005 20:23:34 -0000 1.289
+++ WebView.m 29 Jun 2005 22:53:51 -0000 1.290
@@ -2525,29 +2525,6 @@
}
}
-- (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) {
1.18 +0 -1 WebKit/WebView.subproj/WebViewInternal.h
Index: WebViewInternal.h
===================================================================
RCS file: /cvs/root/WebKit/WebView.subproj/WebViewInternal.h,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- WebViewInternal.h 5 Jun 2005 17:54:49 -0000 1.17
+++ WebViewInternal.h 29 Jun 2005 22:53:51 -0000 1.18
@@ -106,7 +106,6 @@
int spellCheckerDocumentTag;
BOOL continuousSpellCheckingEnabled;
- BOOL continuousGrammarCheckingEnabled;
BOOL smartInsertDeleteEnabled;
BOOL dashboardBehaviorAlwaysSendMouseEventsToAllWindows;
1.143 +0 -4 WebKit/WebView.subproj/WebViewPrivate.h
Index: WebViewPrivate.h
===================================================================
RCS file: /cvs/root/WebKit/WebView.subproj/WebViewPrivate.h,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -r1.142 -r1.143
--- WebViewPrivate.h 22 Jun 2005 21:32:09 -0000 1.142
+++ WebViewPrivate.h 29 Jun 2005 22:53:51 -0000 1.143
@@ -75,10 +75,6 @@
- (IBAction)toggleContinuousSpellChecking:(id)sender;
-- (BOOL)isContinuousGrammarCheckingEnabled;
-- (void)setContinuousGrammarCheckingEnabled:(BOOL)flag;
-- (void)toggleContinuousGrammarChecking:(id)sender;
-
- (void)toggleSmartInsertDelete:(id)sender;
- (BOOL)canMakeTextStandardSize;
More information about the webkit-changes
mailing list