diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-09-17 17:11:09 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-09-18 10:10:06 +0000 |
commit | b854de954f3dd66b569af3a5ec5cdf81a78c70ca (patch) | |
tree | aa714f91b96eb1b5ea00f677deb6dee0b5850d7f /basic | |
parent | 96b45756b46ceb06dbec5c241d09acc96891e121 (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 'basic')
-rw-r--r-- | basic/source/sbx/sbxbase.cxx | 3 | ||||
-rw-r--r-- | basic/source/uno/namecont.cxx | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/basic/source/sbx/sbxbase.cxx b/basic/source/sbx/sbxbase.cxx index 0b10ffa7159c..e56172275a04 100644 --- a/basic/source/sbx/sbxbase.cxx +++ b/basic/source/sbx/sbxbase.cxx @@ -25,8 +25,7 @@ #include <basic/sbxbase.hxx> #include <rtl/instance.hxx> -#include <rtl/oustringostreaminserter.hxx> -#include <sal/log.hxx> +#include <rtl/ustring.hxx> #include <boost/foreach.hpp> // AppData-Structure for SBX: diff --git a/basic/source/uno/namecont.cxx b/basic/source/uno/namecont.cxx index e09c84f7c784..dc72b38d83b6 100644 --- a/basic/source/uno/namecont.cxx +++ b/basic/source/uno/namecont.cxx @@ -25,10 +25,9 @@ #include <vcl/svapp.hxx> #include <osl/mutex.hxx> #include <tools/errinf.hxx> -#include <rtl/oustringostreaminserter.hxx> +#include <rtl/ustring.hxx> #include <rtl/uri.hxx> #include <rtl/strbuf.hxx> -#include <sal/log.hxx> #include <comphelper/processfactory.hxx> #include <comphelper/anytostring.hxx> |