[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.18-1-697-g2f78b87

zoltan at webkit.org zoltan at webkit.org
Wed Jan 20 22:23:50 UTC 2010


The following commit has been merged in the debian/unstable branch:
commit 03ac512708d7e1c1bf7ea8c926c2a1b1331ff2e6
Author: zoltan at webkit.org <zoltan at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jan 14 08:34:32 2010 +0000

    2010-01-14  Zoltan Horvath  <zoltan at webkit.org>
    
            Reviewed by Oliver Hunt.
    
            [Qt] Allow custom memory allocation control for FontPlatformDataPrivate class
            https://bugs.webkit.org/show_bug.cgi?id=
    
            Inherits the following class from Noncopyable because it is
            instantiated by 'new' and no need to be copyable:
    
            class name                    - instantiated at: WebCore/'location'
            class FontPlatformDataPrivate - platform/graphics/qt/FontPlatformData.h:70
    
            * platform/graphics/qt/FontPlatformData.h:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53245 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index cd4612e..6e439e5 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,18 @@
+2010-01-14  Zoltan Horvath  <zoltan at webkit.org>
+
+        Reviewed by Oliver Hunt.
+
+        [Qt] Allow custom memory allocation control for FontPlatformDataPrivate class
+        https://bugs.webkit.org/show_bug.cgi?id=
+
+        Inherits the following class from Noncopyable because it is 
+        instantiated by 'new' and no need to be copyable:
+
+        class name                    - instantiated at: WebCore/'location'
+        class FontPlatformDataPrivate - platform/graphics/qt/FontPlatformData.h:70
+
+        * platform/graphics/qt/FontPlatformData.h:
+
 2010-01-12  Philippe Normand  <pnormand at igalia.com>
 
         Reviewed by Xan Lopez.
diff --git a/WebCore/platform/graphics/qt/FontPlatformData.h b/WebCore/platform/graphics/qt/FontPlatformData.h
index 4a3f8bc..9355142 100644
--- a/WebCore/platform/graphics/qt/FontPlatformData.h
+++ b/WebCore/platform/graphics/qt/FontPlatformData.h
@@ -31,7 +31,7 @@
 namespace WebCore {
 
 class String;
-class FontPlatformDataPrivate {
+class FontPlatformDataPrivate : public Noncopyable {
 public:
     FontPlatformDataPrivate()
         : refCount(1)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list