diff options
-rw-r--r-- | compilerplugins/clang/constantfunction.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/compilerplugins/clang/constantfunction.cxx b/compilerplugins/clang/constantfunction.cxx index 4ca710f35b11..4f367fc709fb 100644 --- a/compilerplugins/clang/constantfunction.cxx +++ b/compilerplugins/clang/constantfunction.cxx @@ -405,8 +405,10 @@ bool ConstantFunction::VisitFunctionDecl(const FunctionDecl * pFunctionDecl) { return true; } // vcl/unx/gtk3 re-using vcl/unx/gtk: - if (aFunctionName == "GtkData::initNWF" - || aFunctionName == "GtkSalFrame::EnsureAppMenuWatch") + if (aFunctionName == "DeInitAtkBridge" + || aFunctionName == "GtkData::initNWF" + || aFunctionName == "GtkSalFrame::EnsureAppMenuWatch" + || aFunctionName == "InitAtkBridge") { return true; } |