diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-08-28 15:42:41 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-08-28 15:42:41 +0200 |
commit | 240ea11fe8e96cb4b86d83e887e9a2e69328a626 (patch) | |
tree | 31187317c94c23e9a55f2c435fe79a7a4b89531b /sfx2 | |
parent | f43d50d1e470dbfbadb4e90135069f0ca89d65c7 (diff) |
Avoid incomplete type in fn sig to keep ubsan's RTTI-based checks happy
Change-Id: I786e07caf28b2f5f898b50fc2a46247d821248cf
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/dialog/navigat.cxx | 3 | ||||
-rw-r--r-- | sfx2/source/sidebar/SidebarChildWindow.cxx | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/sfx2/source/dialog/navigat.cxx b/sfx2/source/dialog/navigat.cxx index 66faa474d823..4c3f972bb15c 100644 --- a/sfx2/source/dialog/navigat.cxx +++ b/sfx2/source/dialog/navigat.cxx @@ -17,6 +17,9 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <sal/config.h> + +#include <sfx2/bindings.hxx> #include <sfx2/navigat.hxx> #include <sfx2/sfx.hrc> #include <sfx2/app.hxx> diff --git a/sfx2/source/sidebar/SidebarChildWindow.cxx b/sfx2/source/sidebar/SidebarChildWindow.cxx index 1cb12104eac3..fc78ac712c82 100644 --- a/sfx2/source/sidebar/SidebarChildWindow.cxx +++ b/sfx2/source/sidebar/SidebarChildWindow.cxx @@ -18,6 +18,7 @@ */ #include "TabBar.hxx" +#include <sfx2/bindings.hxx> #include <sfx2/sidebar/SidebarChildWindow.hxx> #include "SidebarDockingWindow.hxx" #include <sfx2/sfxsids.hrc> |