summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2012-09-17 17:11:09 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2012-09-18 10:10:06 +0000
commitb854de954f3dd66b569af3a5ec5cdf81a78c70ca (patch)
treeaa714f91b96eb1b5ea00f677deb6dee0b5850d7f /starmath
parent96b45756b46ceb06dbec5c241d09acc96891e121 (diff)
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 <nthiebaud@gmail.com> Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/ooxmlexport.cxx2
-rw-r--r--starmath/source/ooxmlimport.cxx2
-rw-r--r--starmath/source/rtfexport.cxx2
-rw-r--r--starmath/source/wordexportbase.cxx2
4 files changed, 4 insertions, 4 deletions
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 <oox/token/tokens.hxx>
-#include <rtl/oustringostreaminserter.hxx>
+#include <rtl/ustring.hxx>
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 <oox/token/tokens.hxx>
#include <oox/token/namespaces.hxx>
-#include <rtl/oustringostreaminserter.hxx>
+#include <rtl/ustring.hxx>
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 <rtl/oustringostreaminserter.hxx>
+#include <rtl/ustring.hxx>
#include <svtools/rtfkeywd.hxx>
#include <filter/msfilter/rtfutil.hxx>
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 <rtl/oustringostreaminserter.hxx>
+#include <rtl/ustring.hxx>
SmWordExportBase::SmWordExportBase( const SmNode* pIn )
: m_pTree( pIn )