o3tl: rename compat_functional header

After the cleanup, the stuff there really stands on its own (and the
remaining usage of select1st/2nd is more descriptive than lambdas).

Change-Id: I0aba131d5dc550189f8130d167dc94167e404540
Reviewed-on: https://gerrit.libreoffice.org/17806
Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Tested-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
This commit is contained in:
Thorsten Behrens 2015-08-17 14:40:17 +02:00
parent 9c4d75bea5
commit ad1f0d1f1a
25 changed files with 26 additions and 26 deletions

View file

@ -112,7 +112,7 @@
#include <framework/documentundoguard.hxx>
#include <initializer_list>
#include <map>
#include <o3tl/compat_functional.hxx>
#include <o3tl/functional.hxx>
#include <officecfg/Office/Common.hxx>
#include <osl/diagnose.h>
#include <osl/file.hxx>

View file

@ -39,7 +39,7 @@
#include <com/sun/star/lang/WrappedTargetRuntimeException.hpp>
#include <com/sun/star/script/XScriptEventsSupplier.hpp>
#include <com/sun/star/table/CellAddress.hpp>
#include <o3tl/compat_functional.hxx>
#include <o3tl/functional.hxx>
#include <unotools/sharedunocomponent.hxx>
#include <vcl/svapp.hxx>

View file

@ -38,7 +38,7 @@
#include <cppuhelper/supportsservice.hxx>
#include <osl/mutex.hxx>
#include <osl/process.h>
#include <o3tl/compat_functional.hxx>
#include <o3tl/functional.hxx>
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;

View file

@ -48,7 +48,7 @@
#include <vcl/window.hxx>
#include <vcl/graph.hxx>
#include <vcl/settings.hxx>
#include <o3tl/compat_functional.hxx>
#include <o3tl/functional.hxx>
#include <algorithm>

View file

@ -66,7 +66,7 @@
#include <vector>
#include <algorithm>
#include <functional>
#include <o3tl/compat_functional.hxx>
#include <o3tl/functional.hxx>
using namespace ::com::sun::star;
using namespace ::com::sun::star::chart;

View file

@ -25,7 +25,7 @@
#include <algorithm>
#include <functional>
#include <o3tl/compat_functional.hxx>
#include <o3tl/functional.hxx>
namespace chart
{

View file

@ -45,7 +45,7 @@
#include <algorithm>
#include <iterator>
#include <functional>
#include <o3tl/compat_functional.hxx>
#include <o3tl/functional.hxx>
using namespace ::com::sun::star;

View file

@ -20,7 +20,7 @@
#include "TSortIndex.hxx"
#include <algorithm>
#include <iterator>
#include <o3tl/compat_functional.hxx>
#include <o3tl/functional.hxx>
using namespace connectivity;

View file

@ -37,7 +37,7 @@
#include <unotools/sharedunocomponent.hxx>
#include "TConnection.hxx"
#include <o3tl/compat_functional.hxx>
#include <o3tl/functional.hxx>
#include <iterator>
#include <set>

View file

@ -26,7 +26,7 @@
#include <algorithm>
#include <functional>
#include <o3tl/compat_functional.hxx>
#include <o3tl/functional.hxx>
namespace dbaccess
{

View file

@ -58,7 +58,7 @@
#include <com/sun/star/util/XModifiable.hpp>
#include <rtl/ustring.hxx>
#include <algorithm>
#include <o3tl/compat_functional.hxx>
#include <o3tl/functional.hxx>
#include <boost/scoped_ptr.hpp>
#include <cppuhelper/implbase1.hxx>
#include <limits>

View file

@ -70,7 +70,7 @@
#include <algorithm>
#include <functional>
#include <o3tl/compat_functional.hxx>
#include <o3tl/functional.hxx>
namespace dbaui
{

View file

@ -34,7 +34,7 @@
#include <functional>
#include <algorithm>
#include <o3tl/compat_functional.hxx>
#include <o3tl/functional.hxx>
namespace pcr
{

View file

@ -68,7 +68,7 @@
#include <map>
#include <algorithm>
#include <o3tl/compat_functional.hxx>
#include <o3tl/functional.hxx>
extern "C" void SAL_CALL createRegistryInfo_EventHandler()
{

View file

@ -41,7 +41,7 @@
#include <tools/debug.hxx>
#include <algorithm>
#include <o3tl/compat_functional.hxx>
#include <o3tl/functional.hxx>
extern "C" void SAL_CALL createRegistryInfo_GenericPropertyHandler()
{

View file

@ -282,7 +282,7 @@
#include <limits>
#include <list>
#include <memory>
#include <o3tl/compat_functional.hxx>
#include <o3tl/functional.hxx>
#include <ooo/vba/XVBAToOOEventDescGen.hpp>
#include <osl/diagnose.h>
#include <osl/file.hxx>

View file

@ -23,7 +23,7 @@
#include "unohelper.hxx"
#include <algorithm>
#include <functional>
#include <o3tl/compat_functional.hxx>
#include <o3tl/functional.hxx>
#include <rtl/math.hxx>
#include <rtl/ustrbuf.hxx>
#include <osl/diagnose.h>

View file

@ -29,7 +29,7 @@
#include <functional>
#include <algorithm>
#include <o3tl/compat_functional.hxx>
#include <o3tl/functional.hxx>
namespace xforms
{

View file

@ -24,6 +24,7 @@ Represents a range of integer or iterator values.
[git:o3tl/inc/o3tl/vector_pool.hxx]
Simple vector-based memory pool allocator.
[git:o3tl/inc/o3tl/compat_functional.hxx]
Some more templates. Contains also templates from STLport's functional header that are not part of the
C++ standard (STLport has been replaced by direct use of the C++ STL in LibreOffice).
[git:o3tl/inc/o3tl/functional.hxx]
Some more templates, leftovers in spirit of STLport's old functional
header that are not part of the C++ standard (STLport has been
replaced by direct use of the C++ STL in LibreOffice).

View file

@ -103,7 +103,7 @@
#include "dlgpage.hxx"
#include "helpids.hrc"
#include <toolkit/helper/convert.hxx>
#include <o3tl/compat_functional.hxx>
#include <o3tl/functional.hxx>
#define DATA_OR_FORMULA 0
#define FUNCTION 1

View file

@ -472,7 +472,7 @@
#include <memory>
#include <new>
#include <numeric>
#include <o3tl/compat_functional.hxx>
#include <o3tl/functional.hxx>
#include <officecfg/Office/Common.hxx>
#include <officecfg/Office/Impress.hxx>
#include <osl/diagnose.h>

View file

@ -19,7 +19,6 @@
#include "tools/PropertySet.hxx"
#include <algorithm>
#include <o3tl/compat_functional.hxx>
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;

View file

@ -610,7 +610,7 @@
#include <map>
#include <math.h>
#include <memory>
#include <o3tl/compat_functional.hxx>
#include <o3tl/functional.hxx>
#include <o3tl/numeric.hxx>
#include <osl/diagnose.h>
#include <osl/endian.h>

View file

@ -89,7 +89,7 @@
#include <algorithm>
#include <o3tl/compat_functional.hxx>
#include <o3tl/functional.hxx>
using namespace ::com::sun::star;
using namespace ::comphelper;