From b854de954f3dd66b569af3a5ec5cdf81a78c70ca Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Mon, 17 Sep 2012 17:11:09 -0500 Subject: deprecate oustringostreaminserter.hxx the intent of this header has canged over time. now it is already systematically included with ustring.hxx and the operator overload it provide fit nicely there... Just to be safe, since that include as been added to the api during the 3.5 timeframe and therefore is already in 'production' the header remain and simply attempt to include ustring.hxx but a warning is issued indicating that this header should not be used anymore... in a couple of major release we will thenr emove it completely All internal users of that header are converted. Change-Id: I8934c55f089e29d78c0f5649b7c87b2ecf024bad Reviewed-on: https://gerrit.libreoffice.org/634 Tested-by: Norbert Thiebaud Reviewed-by: Norbert Thiebaud --- starmath/source/ooxmlexport.cxx | 2 +- starmath/source/ooxmlimport.cxx | 2 +- starmath/source/rtfexport.cxx | 2 +- starmath/source/wordexportbase.cxx | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'starmath') diff --git a/starmath/source/ooxmlexport.cxx b/starmath/source/ooxmlexport.cxx index 9cf7188543a7..f9b716237461 100644 --- a/starmath/source/ooxmlexport.cxx +++ b/starmath/source/ooxmlexport.cxx @@ -30,7 +30,7 @@ #include "ooxmlexport.hxx" #include -#include +#include using namespace oox; using namespace oox::core; diff --git a/starmath/source/ooxmlimport.cxx b/starmath/source/ooxmlimport.cxx index 50b06e022fe5..c83fc9b26209 100644 --- a/starmath/source/ooxmlimport.cxx +++ b/starmath/source/ooxmlimport.cxx @@ -31,7 +31,7 @@ #include #include -#include +#include using namespace oox; using namespace oox::formulaimport; diff --git a/starmath/source/rtfexport.cxx b/starmath/source/rtfexport.cxx index 6f4d0a20d515..7e37ac39de76 100644 --- a/starmath/source/rtfexport.cxx +++ b/starmath/source/rtfexport.cxx @@ -29,7 +29,7 @@ #include "rtfexport.hxx" -#include +#include #include #include diff --git a/starmath/source/wordexportbase.cxx b/starmath/source/wordexportbase.cxx index 9f5e54bd182f..3181697edf9f 100644 --- a/starmath/source/wordexportbase.cxx +++ b/starmath/source/wordexportbase.cxx @@ -29,7 +29,7 @@ #include "wordexportbase.hxx" -#include +#include SmWordExportBase::SmWordExportBase( const SmNode* pIn ) : m_pTree( pIn ) -- cgit