diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-12-21 22:03:29 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-12-22 10:49:55 +0100 |
commit | f3e840541a117113be85d7733f20c5d5ab6552f1 (patch) | |
tree | 8109959de7dfe6dc9061ece5834b657f3bc04ba2 /starmath | |
parent | 7ea805eb81ce865198cdb0fe418a73f6c353310e (diff) |
tdf#42949 Fix some Include What You Use warnings
Change-Id: I30121764303579a7cb4ded0f0f48cc1f8fff6c33
Reviewed-on: https://gerrit.libreoffice.org/46946
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/source/ooxmlexport.cxx | 2 | ||||
-rw-r--r-- | starmath/source/rtfexport.cxx | 1 | ||||
-rw-r--r-- | starmath/source/wordexportbase.cxx | 2 | ||||
-rw-r--r-- | starmath/source/wordexportbase.hxx | 11 |
4 files changed, 13 insertions, 3 deletions
diff --git a/starmath/source/ooxmlexport.cxx b/starmath/source/ooxmlexport.cxx index 29cd46e9bea2..7e731fb717ca 100644 --- a/starmath/source/ooxmlexport.cxx +++ b/starmath/source/ooxmlexport.cxx @@ -7,8 +7,8 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - #include "ooxmlexport.hxx" +#include <node.hxx> #include <oox/token/tokens.hxx> #include <rtl/ustring.hxx> diff --git a/starmath/source/rtfexport.cxx b/starmath/source/rtfexport.cxx index a06bb4c5a4ad..50d32b393221 100644 --- a/starmath/source/rtfexport.cxx +++ b/starmath/source/rtfexport.cxx @@ -8,6 +8,7 @@ */ #include "rtfexport.hxx" +#include <node.hxx> #include <svtools/rtfkeywd.hxx> #include <filter/msfilter/rtfutil.hxx> diff --git a/starmath/source/wordexportbase.cxx b/starmath/source/wordexportbase.cxx index cf32d067f364..02929e438514 100644 --- a/starmath/source/wordexportbase.cxx +++ b/starmath/source/wordexportbase.cxx @@ -7,8 +7,8 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - #include "wordexportbase.hxx" +#include <node.hxx> SmWordExportBase::SmWordExportBase(const SmNode* pIn) : m_pTree(pIn) diff --git a/starmath/source/wordexportbase.hxx b/starmath/source/wordexportbase.hxx index 41a6f42408be..b5b0d6853cbf 100644 --- a/starmath/source/wordexportbase.hxx +++ b/starmath/source/wordexportbase.hxx @@ -10,7 +10,16 @@ #ifndef INCLUDED_STARMATH_SOURCE_WORDEXPORTBASE_HXX #define INCLUDED_STARMATH_SOURCE_WORDEXPORTBASE_HXX -#include <node.hxx> +class SmAttributNode; +class SmBinHorNode; +class SmBraceNode; +class SmMatrixNode; +class SmNode; +class SmOperNode; +class SmRootNode; +class SmSubSupNode; +class SmUnHorNode; +class SmVerticalBraceNode; /** Base class implementing writing of formulas to Word. |