[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 07:01:21 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 3cbec6d6f271b69d9ed7a9a9aad5ca1984d91096
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Nov 15 19:14:51 2002 +0000

    	- fixed 3090219 -- Window jumps up and down when loading nikon page
    
            * kwq/KWQWindowWidget.mm: (KWQWindowWidget::setFrameGeometry):
    	Don't pass display:NO when resizing the window.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2696 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 47a8cbb..48be53a 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,10 @@
+2002-11-15  Darin Adler  <darin at apple.com>
+
+	- fixed 3090219 -- Window jumps up and down when loading nikon page
+
+        * kwq/KWQWindowWidget.mm: (KWQWindowWidget::setFrameGeometry):
+	Don't pass display:NO when resizing the window.
+
 2002-11-15  Ken Kocienda  <kocienda at apple.com>
 
 	Remove characters RFC 2396 describes as "unwise" from the
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 47a8cbb..48be53a 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,10 @@
+2002-11-15  Darin Adler  <darin at apple.com>
+
+	- fixed 3090219 -- Window jumps up and down when loading nikon page
+
+        * kwq/KWQWindowWidget.mm: (KWQWindowWidget::setFrameGeometry):
+	Don't pass display:NO when resizing the window.
+
 2002-11-15  Ken Kocienda  <kocienda at apple.com>
 
 	Remove characters RFC 2396 describes as "unwise" from the
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 47a8cbb..48be53a 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,10 @@
+2002-11-15  Darin Adler  <darin at apple.com>
+
+	- fixed 3090219 -- Window jumps up and down when loading nikon page
+
+        * kwq/KWQWindowWidget.mm: (KWQWindowWidget::setFrameGeometry):
+	Don't pass display:NO when resizing the window.
+
 2002-11-15  Ken Kocienda  <kocienda at apple.com>
 
 	Remove characters RFC 2396 describes as "unwise" from the
diff --git a/WebCore/kwq/KWQWindowWidget.mm b/WebCore/kwq/KWQWindowWidget.mm
index 22daf54..cb1b6db 100644
--- a/WebCore/kwq/KWQWindowWidget.mm
+++ b/WebCore/kwq/KWQWindowWidget.mm
@@ -113,9 +113,9 @@ QPoint KWQWindowWidget::mapFromGlobal(const QPoint &p) const
 
 void KWQWindowWidget::setFrameGeometry(const QRect &r)
 {
-    // FIXME: should try to avoid saving changes
+    // FIXME: Could do something to make it easy for the browser to avoid saving this change.
     [d->window setFrame:NSMakeRect(r.x(), NSMaxY([[[NSScreen screens] objectAtIndex:0] frame]) - (r.y() + r.height()),
-        r.width(), r.height()) display:NO];
+        r.width(), r.height())];
 }
 
 @implementation KWQWindowWidgetDeleter

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list