diff options
author | Maxim Monastirsky <momonasmon@gmail.com> | 2017-05-02 03:03:03 +0300 |
---|---|---|
committer | Maxim Monastirsky <momonasmon@gmail.com> | 2017-05-05 11:23:51 +0300 |
commit | 8ac571d47045108d40ff6e6ff2128affeee402de (patch) | |
tree | 5345f6a647fcace0d53fb3025c6f80ddd7463582 /compilerplugins | |
parent | 81c4d3bd009d89af4ffd84a2ade00f1f919cf371 (diff) |
sc: Remove some dead slots
Change-Id: I92cfd5043c084d64fdfba3a1df817ee035388797
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/clang/store/constantfunction.cxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/compilerplugins/clang/store/constantfunction.cxx b/compilerplugins/clang/store/constantfunction.cxx index 20f69712fa07..79ba7a4e1e53 100644 --- a/compilerplugins/clang/store/constantfunction.cxx +++ b/compilerplugins/clang/store/constantfunction.cxx @@ -350,18 +350,10 @@ bool ConstantFunction::VisitFunctionDecl(const FunctionDecl * pFunctionDecl) { if (startsWith(aFunctionName, "sc::(anonymous namespace)::CSVHandler::")) { return true; } - // called from SDI file, I don't know what that stuff is about, sc/source/ui/docshell/docsh7.cxx - if (aFunctionName == "ScDocShell::GetDrawObjState") { - return true; - } // called from SDI file, I don't know what that stuff is about, sc/source/ui/view/cellsh4.cxx if (aFunctionName == "ScCellShell::GetStateCursor") { return true; } - // called from SDI file, I don't know what that stuff is about, sc/source/ui/view/tabvwshh.cxx - if (aFunctionName == "ScTabViewShell::ExecuteSbx" || aFunctionName == "ScTabViewShell::GetSbxState") { - return true; - } // template magic, sc/source/filter/excel/xepivot.cxx if (aFunctionName == "XclExpPivotCache::SaveXml") { return true; |