diff options
Diffstat (limited to 'xfa/fde/css/fde_cssstylesheet.cpp')
-rw-r--r-- | xfa/fde/css/fde_cssstylesheet.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fde/css/fde_cssstylesheet.cpp b/xfa/fde/css/fde_cssstylesheet.cpp index b07031c354..dcfd302a58 100644 --- a/xfa/fde/css/fde_cssstylesheet.cpp +++ b/xfa/fde/css/fde_cssstylesheet.cpp @@ -102,7 +102,7 @@ void CFDE_CSSStyleSheet::Reset() { } m_RuleArray.RemoveAll(); m_Selectors.RemoveAll(); - m_StringCache.RemoveAll(); + m_StringCache.clear(); delete m_pAllocator; m_pAllocator = nullptr; } @@ -175,7 +175,7 @@ FX_BOOL CFDE_CSSStyleSheet::LoadFromSyntax(CFDE_CSSSyntaxParser* pSyntax) { } } while (eStatus >= FDE_CSSSYNTAXSTATUS_None); m_Selectors.RemoveAll(); - m_StringCache.RemoveAll(); + m_StringCache.clear(); return eStatus != FDE_CSSSYNTAXSTATUS_Error; } FDE_CSSSYNTAXSTATUS CFDE_CSSStyleSheet::LoadMediaRule( |