From 00948f58ae4ba3713e2e25080c9e229ecbe929eb Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Mon, 27 Apr 2015 15:10:00 -0700 Subject: Revert "Make CFX_WideString::LockBuffer() completely unused." This reverts commit ee7412f5aef353e5c6f1a64d0e1708ed926869d9. Reason for revert: VS compile broke. TBR=thestig@chromium.org Review URL: https://codereview.chromium.org/1106333003 --- core/src/fxcrt/fx_basic_wstring.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'core/src/fxcrt/fx_basic_wstring.cpp') diff --git a/core/src/fxcrt/fx_basic_wstring.cpp b/core/src/fxcrt/fx_basic_wstring.cpp index 2ea23e4f19..e255aa0779 100644 --- a/core/src/fxcrt/fx_basic_wstring.cpp +++ b/core/src/fxcrt/fx_basic_wstring.cpp @@ -535,6 +535,15 @@ int CFX_WideString::Compare(const CFX_WideString& str) const } return 0; } +FX_LPWSTR CFX_WideString::LockBuffer() +{ + if (m_pData == NULL) { + return NULL; + } + FX_LPWSTR lpsz = GetBuffer(0); + m_pData->m_nRefs = -1; + return lpsz; +} void CFX_WideString::SetAt(FX_STRSIZE nIndex, FX_WCHAR ch) { if (m_pData == NULL) { -- cgit v1.2.3