Changeset 18411 in webkit


Ignore:
Timestamp:
Dec 24, 2006 8:46:33 AM (17 years ago)
Author:
weinig
Message:

Reviewed by Maciej and Geoff.

  • remove unused member variable m_styleSelectorDirty

No test possible (no functionality change)

  • dom/Document.cpp: (WebCore::Document::Document): (WebCore::Document::recalcStyleSelector):
  • dom/Document.h:
Location:
trunk/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r18410 r18411  
     12006-12-24  Mitz Pettel  <mitz@webkit.org>
     2
     3        Reviewed by Maciej and Geoff.
     4
     5        - remove unused member variable m_styleSelectorDirty
     6
     7        No test possible (no functionality change)
     8
     9        * dom/Document.cpp:
     10        (WebCore::Document::Document):
     11        (WebCore::Document::recalcStyleSelector):
     12        * dom/Document.h:
     13
    1142006-12-24  Sam Weinig  <sam@webkit.org>
    215
  • trunk/WebCore/dom/Document.cpp

    r18304 r18411  
    327327    m_listenerTypes = 0;
    328328    m_inDocument = true;
    329     m_styleSelectorDirty = false;
    330329    m_inStyleRecalc = false;
    331330    m_closeAfterStyleRecalc = false;
     
    19931992    m_styleSelector = new CSSStyleSelector(this, usersheet, m_styleSheets.get(), !inCompatMode());
    19941993    m_styleSelector->setEncodedURL(m_url);
    1995     m_styleSelectorDirty = false;
    19961994}
    19971995
  • trunk/WebCore/dom/Document.h

    r18319 r18411  
    686686    bool m_bAllDataReceived;
    687687    bool m_docChanged;
    688     bool m_styleSelectorDirty;
    689688    bool m_inStyleRecalc;
    690689    bool m_closeAfterStyleRecalc;
Note: See TracChangeset for help on using the changeset viewer.