summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/graphics/win/IconWin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/graphics/win/IconWin.cpp')
-rw-r--r--WebCore/platform/graphics/win/IconWin.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/WebCore/platform/graphics/win/IconWin.cpp b/WebCore/platform/graphics/win/IconWin.cpp
index b6bc926..60cebe3 100644
--- a/WebCore/platform/graphics/win/IconWin.cpp
+++ b/WebCore/platform/graphics/win/IconWin.cpp
@@ -28,14 +28,12 @@
namespace WebCore {
Icon::Icon()
- : RefCounted<Icon>(0)
- , m_hIcon(0)
+ : m_hIcon(0)
{
}
Icon::Icon(HICON icon)
- : RefCounted<Icon>(0)
- , m_hIcon(icon)
+ : m_hIcon(icon)
{
}