[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 08:08:32 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 503ee926db8236feeec638e9df58676da5416586
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Nov 2 02:01:32 2003 +0000

            Reviewed by John.
    
            - fixed 3468870 -- REGRESSION (108-109): cannot upload files (<input type=file> is broken)
    
            * kwq/KWQFileButton.mm: (KWQFileButton::filenameChanged): Pass the filename to
            the textChanged signal. The one without a parameter is a different signal.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5353 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index d9580fd..4822a0e 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -2,6 +2,15 @@
 
         Reviewed by John.
 
+        - fixed 3468870 -- REGRESSION (108-109): cannot upload files (<input type=file> is broken)
+
+        * kwq/KWQFileButton.mm: (KWQFileButton::filenameChanged): Pass the filename to
+        the textChanged signal. The one without a parameter is a different signal.
+
+2003-11-01  Darin Adler  <darin at apple.com>
+
+        Reviewed by John.
+
         - fixed 3466714 -- page with <object> tag with text subtype and no URL causes hang
 
         * khtml/khtml_part.cpp: (KHTMLPart::requestObject): Added a check so that an empty
diff --git a/WebCore/kwq/KWQFileButton.mm b/WebCore/kwq/KWQFileButton.mm
index ff1e7fe..9f35561 100644
--- a/WebCore/kwq/KWQFileButton.mm
+++ b/WebCore/kwq/KWQFileButton.mm
@@ -123,11 +123,12 @@ void KWQFileButton::filenameChanged()
     NSView <WebCoreFileButton> *button = getView();
 
     QString filename;
+
     KWQ_BLOCK_EXCEPTIONS;
     filename = QString::fromNSString([button filename]);
     KWQ_UNBLOCK_EXCEPTIONS;
 
-    _textChanged.call();
+    _textChanged.call(filename);
 }
 
 void KWQFileButton::clicked()

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list