[SCM] WebKit Debian packaging branch, debian/experimental, updated. debian/1.3.8-1-1049-g2e11a8e

mitz at apple.com mitz at apple.com
Fri Jan 21 14:54:09 UTC 2011


The following commit has been merged in the debian/experimental branch:
commit 4e2e580d67cb9f15c437c0e7de73d8521fca4aeb
Author: mitz at apple.com <mitz at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jan 4 02:02:22 2011 +0000

    Shrink HTMLTableCellElement
    https://bugs.webkit.org/show_bug.cgi?id=51858
    
    Reviewed by Simon Fraser.
    
    * html/HTMLTableCellElement.cpp:
    (WebCore::HTMLTableCellElement::HTMLTableCellElement): Removed intialization of m_row and
    m_col.
    * html/HTMLTableCellElement.h: Removed m_row and m_col and their accessors.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@74953 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index d189f8f..584aee5 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2011-01-03  Dan Bernstein  <mitz at apple.com>
+
+        Reviewed by Simon Fraser.
+
+        Shrink HTMLTableCellElement
+        https://bugs.webkit.org/show_bug.cgi?id=51858
+
+        * html/HTMLTableCellElement.cpp:
+        (WebCore::HTMLTableCellElement::HTMLTableCellElement): Removed intialization of m_row and
+        m_col.
+        * html/HTMLTableCellElement.h: Removed m_row and m_col and their accessors.
+
 2011-01-03  Darin Adler  <darin at apple.com>
 
         Fix build.
diff --git a/WebCore/html/HTMLTableCellElement.cpp b/WebCore/html/HTMLTableCellElement.cpp
index 9123115..c1fb5ee 100644
--- a/WebCore/html/HTMLTableCellElement.cpp
+++ b/WebCore/html/HTMLTableCellElement.cpp
@@ -44,8 +44,6 @@ using namespace HTMLNames;
 
 inline HTMLTableCellElement::HTMLTableCellElement(const QualifiedName& tagName, Document* document)
     : HTMLTablePartElement(tagName, document)
-    , m_row(-1)
-    , m_col(-1)
     , m_rowSpan(1)
     , m_colSpan(1)
 {
diff --git a/WebCore/html/HTMLTableCellElement.h b/WebCore/html/HTMLTableCellElement.h
index f6d202b..9a684f2 100644
--- a/WebCore/html/HTMLTableCellElement.h
+++ b/WebCore/html/HTMLTableCellElement.h
@@ -36,11 +36,6 @@ public:
 
     int cellIndex() const;
 
-    int col() const { return m_col; }
-    void setCol(int col) { m_col = col; }
-    int row() const { return m_row; }
-    void setRow(int row) { m_row = row; }
-
     int colSpan() const { return m_colSpan; }
     int rowSpan() const { return m_rowSpan; }
 
@@ -69,8 +64,6 @@ private:
 
     virtual void addSubresourceAttributeURLs(ListHashSet<KURL>&) const;
 
-    int m_row;
-    int m_col;
     int m_rowSpan;
     int m_colSpan;
 };

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list