summaryrefslogtreecommitdiff
path: root/Source/WebCore/html/HTMLTableElement.h
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@nokia.com>2012-01-11 10:03:25 +0100
committerSimon Hausmann <simon.hausmann@nokia.com>2012-01-11 10:03:25 +0100
commitd11f84f5b5cdc0d92a08af01b13472fdd5f9acb9 (patch)
treeb318cf594dc1da2fa48224005945c9157f35bb41 /Source/WebCore/html/HTMLTableElement.h
parent6300a96eca9f152b379f1bcf3d9efdc5572d989a (diff)
downloadqtwebkit-d11f84f5b5cdc0d92a08af01b13472fdd5f9acb9.tar.gz
Imported WebKit commit 75bb2fc5882d2e1b3d5572c2961507996cbca5e3 (http://svn.webkit.org/repository/webkit/trunk@104681)
Diffstat (limited to 'Source/WebCore/html/HTMLTableElement.h')
-rw-r--r--Source/WebCore/html/HTMLTableElement.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/Source/WebCore/html/HTMLTableElement.h b/Source/WebCore/html/HTMLTableElement.h
index 63e26056a..deed9518d 100644
--- a/Source/WebCore/html/HTMLTableElement.h
+++ b/Source/WebCore/html/HTMLTableElement.h
@@ -40,8 +40,6 @@ public:
static PassRefPtr<HTMLTableElement> create(Document*);
static PassRefPtr<HTMLTableElement> create(const QualifiedName&, Document*);
- virtual ~HTMLTableElement();
-
HTMLTableCaptionElement* caption() const;
void setCaption(PassRefPtr<HTMLTableCaptionElement>, ExceptionCode&);
@@ -60,8 +58,8 @@ public:
PassRefPtr<HTMLElement> insertRow(int index, ExceptionCode&);
void deleteRow(int index, ExceptionCode&);
- PassRefPtr<HTMLCollection> rows();
- PassRefPtr<HTMLCollection> tBodies();
+ HTMLCollection* rows();
+ HTMLCollection* tBodies();
String rules() const;
String summary() const;
@@ -103,7 +101,7 @@ private:
unsigned short m_padding;
RefPtr<CSSMappedAttributeDeclaration> m_paddingDecl;
- RefPtr<HTMLTableRowsCollection> m_rowsCollection;
+ OwnPtr<HTMLTableRowsCollection> m_rowsCollection;
};
} //namespace