From 84a6758609fc9472c7cb5a2e449860bcc554ed58 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Tue, 21 Apr 2015 17:23:34 +0200 Subject: sw: prefix members of SwFieldType Change-Id: Ib07a3c15cb48998d0acb5bfae4e902a2d729b648 --- sw/source/uibase/fldui/fldmgr.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sw/source/uibase/fldui') diff --git a/sw/source/uibase/fldui/fldmgr.cxx b/sw/source/uibase/fldui/fldmgr.cxx index 18483c6fb05a..7d4420a0d025 100644 --- a/sw/source/uibase/fldui/fldmgr.cxx +++ b/sw/source/uibase/fldui/fldmgr.cxx @@ -1604,12 +1604,12 @@ void SwFieldType::_GetFldName() }; // insert infos for fields - SwFieldType::pFldNames = new std::vector; - SwFieldType::pFldNames->reserve(SAL_N_ELEMENTS(coFldNms)); + SwFieldType::s_pFldNames = new std::vector; + SwFieldType::s_pFldNames->reserve(SAL_N_ELEMENTS(coFldNms)); for( sal_uInt16 nIdx = 0; nIdx < SAL_N_ELEMENTS(coFldNms); ++nIdx ) { const OUString aTmp(SW_RES( coFldNms[ nIdx ] )); - SwFieldType::pFldNames->push_back(MnemonicGenerator::EraseAllMnemonicChars( aTmp )); + SwFieldType::s_pFldNames->push_back(MnemonicGenerator::EraseAllMnemonicChars( aTmp )); } } -- cgit