[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:33:39 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit d878c54844252e74352671776f36556e89c60772
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Aug 21 23:37:35 2002 +0000

    	- fixed 3021908 -- text areas should be plain text only
    
            * kwq/KWQTextArea.mm:
            (-[KWQTextArea _createTextView]): setRichText:NO
            (-[KWQTextArea dealloc]): Release the text view so we don't leak.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1895 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index f95c109..81de584 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,5 +1,13 @@
 2002-08-21  Darin Adler  <darin at apple.com>
 
+	- fixed 3021908 -- text areas should be plain text only
+
+        * kwq/KWQTextArea.mm:
+        (-[KWQTextArea _createTextView]): setRichText:NO
+        (-[KWQTextArea dealloc]): Release the text view so we don't leak.
+
+2002-08-21  Darin Adler  <darin at apple.com>
+
         * kwq/KWQNSViewExtras.m: (-[NSClipView _KWQ_scrollRectToVisible:inView:]):
 	Use bounds, not visibleRect. Seems to work better.
 
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index f95c109..81de584 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,5 +1,13 @@
 2002-08-21  Darin Adler  <darin at apple.com>
 
+	- fixed 3021908 -- text areas should be plain text only
+
+        * kwq/KWQTextArea.mm:
+        (-[KWQTextArea _createTextView]): setRichText:NO
+        (-[KWQTextArea dealloc]): Release the text view so we don't leak.
+
+2002-08-21  Darin Adler  <darin at apple.com>
+
         * kwq/KWQNSViewExtras.m: (-[NSClipView _KWQ_scrollRectToVisible:inView:]):
 	Use bounds, not visibleRect. Seems to work better.
 
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index f95c109..81de584 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,13 @@
 2002-08-21  Darin Adler  <darin at apple.com>
 
+	- fixed 3021908 -- text areas should be plain text only
+
+        * kwq/KWQTextArea.mm:
+        (-[KWQTextArea _createTextView]): setRichText:NO
+        (-[KWQTextArea dealloc]): Release the text view so we don't leak.
+
+2002-08-21  Darin Adler  <darin at apple.com>
+
         * kwq/KWQNSViewExtras.m: (-[NSClipView _KWQ_scrollRectToVisible:inView:]):
 	Use bounds, not visibleRect. Seems to work better.
 
diff --git a/WebCore/kwq/KWQTextArea.mm b/WebCore/kwq/KWQTextArea.mm
index 5e95b2f..9048da8 100644
--- a/WebCore/kwq/KWQTextArea.mm
+++ b/WebCore/kwq/KWQTextArea.mm
@@ -70,6 +70,7 @@ const float LargeNumberForText = 1.0e7;
         
     textView = [[NSTextView alloc] initWithFrame:textFrame];
     [[textView textContainer] setWidthTracksTextView:YES];
+    [textView setRichText:NO];
     
     // Setup attributes for default cases WRAP=SOFT|VIRTUAL and WRAP=HARD|PHYSICAL.
     // If WRAP=OFF we reset many of these attributes.
@@ -104,6 +105,13 @@ const float LargeNumberForText = 1.0e7;
     return self;
 }
 
+- (void)dealloc
+{    
+    [textView release];
+    
+    [super dealloc];
+}
+
 - (void)textDidEndEditing:(NSNotification *)aNotification
 {
     widget->textChanged();

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list