rendering/RenderLayer.cpp
rendering/RenderTableCell.cpp
rendering/RenderListItem.cpp
- rendering/RenderImageButton.cpp
rendering/AutoTableLayout.cpp
rendering/RenderArena.cpp
rendering/RenderWidget.cpp
+2006-10-05 Mitz Pettel <mitz@webkit.org>
+
+ Reviewed by Darin.
+
+ - http://bugs.webkit.org/show_bug.cgi?id=10386
+ Delete RenderImageButton.* and remove references from .vcproj and .bkl files
+
+ * CMakeLists.txt:
+ * WebCore.vcproj/WebCore/WebCore.vcproj:
+ * WebCoreSources.bkl:
+ * rendering/RenderImageButton.cpp: Removed.
+ * rendering/RenderImageButton.h: Removed.
+
2006-10-05 Mitz Pettel <opendarwin.org@mitzpettel.com>
Reviewed by Darin.
RelativePath="..\..\rendering\RenderImage.h"
>
</File>
- <File
- RelativePath="..\..\rendering\RenderImageButton.cpp"
- >
- </File>
- <File
- RelativePath="..\..\rendering\RenderImageButton.h"
- >
- </File>
<File
RelativePath="..\..\rendering\RenderInline.cpp"
>
rendering/RenderFrameSet.cpp
rendering/RenderHTMLCanvas.cpp
rendering/RenderImage.cpp
- rendering/RenderImageButton.cpp
rendering/RenderInline.cpp
rendering/RenderLabel.cpp
rendering/RenderLayer.cpp
+++ /dev/null
-/*
- * This file is part of the DOM implementation for KDE.
- *
- * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
- * (C) 1999 Antti Koivisto (koivisto@kde.org)
- * (C) 2000 Dirk Mueller (mueller@kde.org)
- * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this library; see the file COPYING.LIB. If not, write to
- * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- *
- */
-
-#include "config.h"
-#include "RenderImageButton.h"
-
-#include "HTMLInputElement.h"
-
-namespace WebCore {
-
-RenderImageButton::RenderImageButton(HTMLInputElement* element)
- : RenderImage(element)
-{
- // ### support DOMActivate event when clicked
-}
-
-} // namespace WebCore
+++ /dev/null
-/*
- * This file is part of the DOM implementation for KDE.
- *
- * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
- * (C) 1999 Antti Koivisto (koivisto@kde.org)
- * (C) 2000 Dirk Mueller (mueller@kde.org)
- * Copyright (C) 2004, 2006 Apple Computer, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this library; see the file COPYING.LIB. If not, write to
- * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- *
- */
-
-#ifndef RenderImageButton_h
-#define RenderImageButton_h
-
-#include "RenderImage.h"
-
-namespace WebCore {
-
- class HTMLInputElement;
-
- class RenderImageButton : public RenderImage {
- public:
- RenderImageButton(HTMLInputElement*);
-
- virtual const char* renderName() const { return "RenderImageButton"; }
- virtual bool isImageButton() const { return true; }
- };
-
-} // namespace WebCore
-
-#endif // RenderImageButton_h