diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2018-07-26 12:23:49 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2018-07-26 21:26:39 +0200 |
commit | f85181c817e7c8371b2d18cee0055b3f8c8958d4 (patch) | |
tree | 766640c130de3725e1f507601530d59c00c949d1 /sfx2/source | |
parent | 6b728b6eb89a848a7c7aaadf246311f7fcebed03 (diff) |
Avoid com.sun.star.container.NoSuchElementException "Active" (3)
Launch Math and notice this kind of logs:
warn:unotools:4125:4125:unotools/source/config/confignode.cxx:444: DBG_UNHANDLED_EXCEPTION
in com::sun::star::uno::Any utl::OConfigurationNode::getNodeValue(const rtl::OUString&) const
type: com.sun.star.container.NoSuchElementException
message: Active
context: configmgr::RootAccess
Change-Id: I4bb1af5caaf53086c243cc8e3a2746ff61cbb869
Reviewed-on: https://gerrit.libreoffice.org/58081
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/notebookbar/SfxNotebookBar.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sfx2/source/notebookbar/SfxNotebookBar.cxx b/sfx2/source/notebookbar/SfxNotebookBar.cxx index 23c2280add7d..9d5a541c9240 100644 --- a/sfx2/source/notebookbar/SfxNotebookBar.cxx +++ b/sfx2/source/notebookbar/SfxNotebookBar.cxx @@ -72,6 +72,9 @@ static OUString lcl_getAppName( vcl::EnumContext::Application eApp ) case vcl::EnumContext::Application::Draw: return OUString( "Draw" ); break; + case vcl::EnumContext::Application::Formula: + return OUString( "Formula" ); + break; default: return OUString(); break; |