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

mjs mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:34:58 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit fc0af1d68524fd3e4ee944458fe48f341caee167
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Apr 19 00:17:56 2004 +0000

            Reviewed by Richard.
    
    	No more need for Completion or Reference to privately inherit from
    	Value, none of the superclass functionality is used.
    
            * kjs/completion.h:
            * kjs/reference.h:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@6423 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index e9549d8..c5859ce 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,12 @@
+2004-04-16  Maciej Stachowiak  <mjs at apple.com>
+        Reviewed by Richard.
+
+	No more need for Completion or Reference to privately inherit from
+	Value, none of the superclass functionality is used.
+
+        * kjs/completion.h:
+        * kjs/reference.h:
+
 === Safari-137 ===
 
 2004-04-16  Richard Williamson   <rjw at apple.com>
diff --git a/JavaScriptCore/kjs/completion.h b/JavaScriptCore/kjs/completion.h
index 23da0b8..5a4c7b5 100644
--- a/JavaScriptCore/kjs/completion.h
+++ b/JavaScriptCore/kjs/completion.h
@@ -45,7 +45,7 @@ namespace KJS {
    *
    * @short Handle for a Completion type.
    */
-  class Completion : private Value {
+  class Completion {
   public:
     Completion(ComplType c = Normal, const Value& v = Value(),
                const Identifier &t = Identifier::null())
diff --git a/JavaScriptCore/kjs/reference.h b/JavaScriptCore/kjs/reference.h
index 11c2087..e54dd68 100644
--- a/JavaScriptCore/kjs/reference.h
+++ b/JavaScriptCore/kjs/reference.h
@@ -28,7 +28,7 @@
 
 namespace KJS {
 
-  class Reference : private Value {
+  class Reference {
     friend class ReferenceList;
     friend class ReferenceListIterator;
   public:

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list