summaryrefslogtreecommitdiff
path: root/i18npool/source/localedata/localedata.cxx
diff options
context:
space:
mode:
authorGabor Kelemen <kelemen.gabor2@nisz.hu>2019-05-26 13:36:37 +0200
committerMichael Stahl <Michael.Stahl@cib.de>2019-05-28 12:07:25 +0200
commitc6b7f5555d5df13eae7aa72dbd3307ad8c9893dc (patch)
tree20b59802a2e7e1ec1e13f9f8fc04db446ca4ef86 /i18npool/source/localedata/localedata.cxx
parentb8c1f54d67c5ae90a868f9b33747c43b97c23351 (diff)
tdf#42949 Fix IWYU warnings in i18npool/
Found with bin/find-unneeded-includes Only removal proposals are dealt with here. Change-Id: Ic331c845f0a8f06c4a8f8f79b6f87e26ca7c3a7d Reviewed-on: https://gerrit.libreoffice.org/72972 Tested-by: Jenkins Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
Diffstat (limited to 'i18npool/source/localedata/localedata.cxx')
-rw-r--r--i18npool/source/localedata/localedata.cxx10
1 files changed, 4 insertions, 6 deletions
diff --git a/i18npool/source/localedata/localedata.cxx b/i18npool/source/localedata/localedata.cxx
index 74dbde3fdb53..454c4045ddef 100644
--- a/i18npool/source/localedata/localedata.cxx
+++ b/i18npool/source/localedata/localedata.cxx
@@ -18,8 +18,10 @@
*/
#include <memory>
+#include <com/sun/star/beans/PropertyValue.hpp>
#include <com/sun/star/container/XIndexAccess.hpp>
#include <com/sun/star/lang/IndexOutOfBoundsException.hpp>
+#include <com/sun/star/text/HoriOrientation.hpp>
#include <cppuhelper/implbase.hxx>
#include <cppuhelper/supportsservice.hxx>
#include <localedata.hxx>
@@ -29,10 +31,11 @@
#include <sal/log.hxx>
#include <osl/diagnose.h>
#include <string.h>
-#include <stdio.h>
#include <rtl/instance.hxx>
#include <sal/macros.h>
+namespace com::sun::star::uno { class XComponentContext; }
+
using namespace com::sun::star::i18n;
using namespace com::sun::star::uno;
using namespace com::sun::star::lang;
@@ -1329,10 +1332,6 @@ LocaleDataImpl::getContinuousNumberingLevels( const lang::Locale& rLocale )
// OutlineNumbering helper class
-namespace com{ namespace sun{ namespace star{ namespace lang {
- struct Locale;
-}}}}
-
struct OutlineNumberingLevel_Impl
{
OUString sPrefix;
@@ -1511,7 +1510,6 @@ LocaleDataImpl::getAllInstalledLocaleNames()
using namespace ::com::sun::star::container;
using namespace ::com::sun::star::beans;
-using namespace ::com::sun::star::style;
using namespace ::com::sun::star::text;
OutlineNumbering::OutlineNumbering(std::unique_ptr<const OutlineNumberingLevel_Impl[]> pOutlnLevels, int nLevels) :