From 85825e0fd54551735ef05b8484f71974734b9135 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 22 Apr 2016 10:08:07 +0200 Subject: Avoid reserved identifiers Change-Id: I27ff0f4f0eb395d7e0a60dd604758c220a3134c4 --- compilerplugins/clang/badstatics.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compilerplugins') diff --git a/compilerplugins/clang/badstatics.cxx b/compilerplugins/clang/badstatics.cxx index d3fc83127fde..aa5024180a91 100644 --- a/compilerplugins/clang/badstatics.cxx +++ b/compilerplugins/clang/badstatics.cxx @@ -117,7 +117,7 @@ public: || name == "s_pGallery" // this is not entirely clear but apparently the GalleryThemeCacheEntry are deleted by GalleryBrowser2::SelectTheme() or GalleryBrowser2::dispose() || name == "s_ExtMgr" // TheExtensionManager::disposing() || name == "s_pDocLockedInsertingLinks" // not owning - || name == "s_pVout" // _FrameFinit() + || name == "s_pVout" // FrameFinit() || name == "s_pPaintQueue" // SwPaintQueue::Remove() || name == "gProp" // only owned (VclPtr) member cleared again || name == "g_pColumnCacheLastTabFrame" // not owning -- cgit