diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-26 09:58:15 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-26 09:58:15 +0100 |
commit | 88309564142eecc86e4d30a917032637d5c48e2b (patch) | |
tree | 9d454461a1365818672e42ee2719922f3895221b /compilerplugins | |
parent | 21713893a4a4ac199d0bf3edb00a1c50082b03d8 (diff) |
Adapt whitelisted names
...after 49c2b9808df8a6b197dec666dfc0cda6321a4306
"bin/rename-sw-abbreviations.sh"
Change-Id: I90cec551bdc52ea4d76dd9e32b45692e8a3be70f
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/clang/badstatics.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compilerplugins/clang/badstatics.cxx b/compilerplugins/clang/badstatics.cxx index 394c33e47aed..5900f49c0f5e 100644 --- a/compilerplugins/clang/badstatics.cxx +++ b/compilerplugins/clang/badstatics.cxx @@ -126,10 +126,10 @@ public: || name == "s_pVout" // _FrmFinit() || name == "s_pPaintQueue" // SwPaintQueue::Remove() || name == "gProp" // only owned (VclPtr) member cleared again - || name == "g_pColumnCacheLastTabFrm" // not owning - || name == "g_pColumnCacheLastCellFrm" // not owning - || name == "g_pRowCacheLastTabFrm" // not owning - || name == "g_pRowCacheLastCellFrm" // not owning + || name == "g_pColumnCacheLastTabFrame" // not owning + || name == "g_pColumnCacheLastCellFrame" // not owning + || name == "g_pRowCacheLastTabFrame" // not owning + || name == "g_pRowCacheLastCellFrame" // not owning || name == "g_OszCtrl" // SwCrsrOszControl::Exit() || name == "g_pSpellIter" // SwEditShell::SpellEnd() || name == "g_pConvIter" // SwEditShell::SpellEnd() |