From 97ee2bbd402c8457f4bf8fe6fd8f5f36590b963f Mon Sep 17 00:00:00 2001 From: Jochen Nitschke Date: Fri, 23 Jun 2017 21:25:26 +0200 Subject: extensions: remove COMPMOD preprocessor defines COMPMOD_RESPREFIX=abp was unused ever since initial commit in 2001. COMPMOD_NAMESPACE was used to set the namespace name qualifier of the helper in componentmodule.hxx to the extension's namespace name. I don't see why this is necessary as the helper is always compiled in a separate extension library. Change-Id: I287607008db3dc0ebc32731536747a921c91807d Reviewed-on: https://gerrit.libreoffice.org/39184 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- compilerplugins/clang/vclwidgets.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compilerplugins') diff --git a/compilerplugins/clang/vclwidgets.cxx b/compilerplugins/clang/vclwidgets.cxx index b493d1598bad..c3cb5dc7ce06 100644 --- a/compilerplugins/clang/vclwidgets.cxx +++ b/compilerplugins/clang/vclwidgets.cxx @@ -373,7 +373,7 @@ bool VCLWidgets::VisitVarDecl(const VarDecl * pVarDecl) { || tc.Class("list").StdNamespace() || tc.Class("mem_fun1_t").StdNamespace() // registration template thing, doesn't actually allocate anything we need to care about - || tc.Class("OMultiInstanceAutoRegistration").Namespace("dbp").GlobalNamespace()) + || tc.Class("OMultiInstanceAutoRegistration").Namespace("compmodule").GlobalNamespace()) { return true; } -- cgit