[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:20:37 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit fd2e539ea9fe41ef87e307a21d09009dc94aa9d4
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jan 21 20:19:49 2003 +0000

            * khtml/html/html_formimpl.cpp:
            (HTMLInputElementImpl::rendererIsNeeded):
    	(HTMLInputElementImpl::attach):
    	Add return statements to fix compile on deployment build.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3368 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 6f8b593..14f0f5e 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,10 @@
+2003-01-21  Darin Adler  <darin at apple.com>
+
+        * khtml/html/html_formimpl.cpp:
+        (HTMLInputElementImpl::rendererIsNeeded):
+	(HTMLInputElementImpl::attach):
+	Add return statements to fix compile on deployment build.
+
 2003-01-21  Maciej Stachowiak  <mjs at apple.com>
 
         Reviewed by Nobody, fixing an accidental commit.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 6f8b593..14f0f5e 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,10 @@
+2003-01-21  Darin Adler  <darin at apple.com>
+
+        * khtml/html/html_formimpl.cpp:
+        (HTMLInputElementImpl::rendererIsNeeded):
+	(HTMLInputElementImpl::attach):
+	Add return statements to fix compile on deployment build.
+
 2003-01-21  Maciej Stachowiak  <mjs at apple.com>
 
         Reviewed by Nobody, fixing an accidental commit.
diff --git a/WebCore/khtml/html/html_formimpl.cpp b/WebCore/khtml/html/html_formimpl.cpp
index 3e33f1f..3bcb246 100644
--- a/WebCore/khtml/html/html_formimpl.cpp
+++ b/WebCore/khtml/html/html_formimpl.cpp
@@ -1266,6 +1266,7 @@ bool HTMLInputElementImpl::rendererIsNeeded(RenderStyle *style)
     case HIDDEN:   return false;
     }
     assert(false);
+    return false;
 }
 
 RenderObject *HTMLInputElementImpl::createRenderer(RenderArena *arena, RenderStyle *style)
@@ -1285,6 +1286,7 @@ RenderObject *HTMLInputElementImpl::createRenderer(RenderArena *arena, RenderSty
     case HIDDEN:   break;
     }
     assert(false);
+    return 0;
 }
 
 void HTMLInputElementImpl::attach()

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list