Changeset 30133 in webkit


Ignore:
Timestamp:
Feb 10, 2008 6:03:31 PM (16 years ago)
Author:
Darin Adler
Message:

JavaScriptCore:

Reviewed by Eric.

  • wtf/RefCounted.h: (WTF::RefCounted::RefCounted): Remove default of 0.

WebKit/wx:

Reviewed by Eric.

  • WebKitSupport/FrameLoaderClientWx.cpp: (WebCore::FrameLoaderClientWx::FrameLoaderClientWx): Set the count to 0 explicitly (one stray client I missed in my last pass).
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r30122 r30133  
     12008-02-10  Darin Adler  <darin@apple.com>
     2
     3        Reviewed by Eric.
     4
     5        - http://bugs.webkit.org/show_bug.cgi?id=17256
     6          eliminate default ref. count of 0 in RefCounted class
     7
     8        * wtf/RefCounted.h:
     9        (WTF::RefCounted::RefCounted): Remove default of 0.
     10
    1112008-02-10  Darin Adler  <darin@apple.com>
    212
  • trunk/JavaScriptCore/wtf/RefCounted.h

    r30051 r30133  
    2929template<class T> class RefCounted : Noncopyable {
    3030public:
    31     RefCounted(int initialRefCount = 0)
     31    RefCounted(int initialRefCount)
    3232        : m_refCount(initialRefCount)
    3333#ifndef NDEBUG
  • trunk/WebKit/wx/ChangeLog

    r29957 r30133  
     12008-02-10  Darin Adler  <darin@apple.com>
     2
     3        Reviewed by Eric.
     4
     5        - http://bugs.webkit.org/show_bug.cgi?id=17256
     6          eliminate default ref. count of 0 in RefCounted class
     7
     8        * WebKitSupport/FrameLoaderClientWx.cpp:
     9        (WebCore::FrameLoaderClientWx::FrameLoaderClientWx):
     10        Set the count to 0 explicitly (one stray client I missed in my last pass).
     11
    1122008-02-03  Kevin Ollivier  <kevino@theolliviers.com>
    213
  • trunk/WebKit/wx/WebKitSupport/FrameLoaderClientWx.cpp

    r29957 r30133  
    6969
    7070FrameLoaderClientWx::FrameLoaderClientWx()
    71     : m_frame(0)
     71    : RefCounted<FrameLoaderClientWx>(0)
     72    , m_frame(0)
    7273{
    7374}
Note: See TracChangeset for help on using the changeset viewer.