summaryrefslogtreecommitdiff
path: root/i18npool
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-17 10:29:59 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-07-17 09:49:35 +0000
commite963a8891238efc758306a09debbc93904a5388b (patch)
tree503b140d741417b6a8401ccaf230b3d3a1ea909e /i18npool
parent771d9ef3f65785092267f6068384e8cdda17f883 (diff)
formatting of public/private/protected section qualifiers
make it consistent across the codebase, no space between keyword and the colon Change-Id: Idca61ddfc74ad2460fb05fe417499324b05e5de5 Reviewed-on: https://gerrit.libreoffice.org/17148 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'i18npool')
-rw-r--r--i18npool/inc/breakiteratorImpl.hxx2
-rw-r--r--i18npool/inc/chaptercollator.hxx2
-rw-r--r--i18npool/inc/collatorImpl.hxx2
-rw-r--r--i18npool/inc/inputsequencechecker.hxx2
-rw-r--r--i18npool/inc/localedata.hxx2
-rw-r--r--i18npool/inc/textconversion.hxx6
-rw-r--r--i18npool/inc/textconversionImpl.hxx2
7 files changed, 9 insertions, 9 deletions
diff --git a/i18npool/inc/breakiteratorImpl.hxx b/i18npool/inc/breakiteratorImpl.hxx
index beb857243e7b..f97133c3e55e 100644
--- a/i18npool/inc/breakiteratorImpl.hxx
+++ b/i18npool/inc/breakiteratorImpl.hxx
@@ -113,7 +113,7 @@ public:
protected:
Boundary result; // for word break iterator
-private :
+private:
struct lookupTableItem {
lookupTableItem(const com::sun::star::lang::Locale& _aLocale, com::sun::star::uno::Reference < XBreakIterator >& _xBI) : aLocale(_aLocale), xBI(_xBI) {};
diff --git a/i18npool/inc/chaptercollator.hxx b/i18npool/inc/chaptercollator.hxx
index 96286b3433f2..74ff2fc406d7 100644
--- a/i18npool/inc/chaptercollator.hxx
+++ b/i18npool/inc/chaptercollator.hxx
@@ -44,7 +44,7 @@ public:
virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
-private :
+private:
// CharacterClassification Implementation
com::sun::star::uno::Reference< XCharacterClassification > cclass;
};
diff --git a/i18npool/inc/collatorImpl.hxx b/i18npool/inc/collatorImpl.hxx
index 99895914c272..60fd79fae798 100644
--- a/i18npool/inc/collatorImpl.hxx
+++ b/i18npool/inc/collatorImpl.hxx
@@ -75,7 +75,7 @@ public:
protected:
lang::Locale nLocale;
-private :
+private:
struct lookupTableItem {
lang::Locale aLocale;
OUString algorithm;
diff --git a/i18npool/inc/inputsequencechecker.hxx b/i18npool/inc/inputsequencechecker.hxx
index 510b8aa1bd3a..e985177b4e5f 100644
--- a/i18npool/inc/inputsequencechecker.hxx
+++ b/i18npool/inc/inputsequencechecker.hxx
@@ -56,7 +56,7 @@ public:
virtual com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
-private :
+private:
const sal_Char *serviceName;
struct lookupTableItem {
diff --git a/i18npool/inc/localedata.hxx b/i18npool/inc/localedata.hxx
index 8bf9ef837cd4..e5adbe714134 100644
--- a/i18npool/inc/localedata.hxx
+++ b/i18npool/inc/localedata.hxx
@@ -121,7 +121,7 @@ public:
virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
-private :
+private:
friend bool operator ==(const com::sun::star::lang::Locale& l1, const com::sun::star::lang::Locale& l2);
::std::unique_ptr< LocaleDataLookupTableItem > cachedItem;
diff --git a/i18npool/inc/textconversion.hxx b/i18npool/inc/textconversion.hxx
index 6a41d9288a77..a7f81ce18d3f 100644
--- a/i18npool/inc/textconversion.hxx
+++ b/i18npool/inc/textconversion.hxx
@@ -83,7 +83,7 @@ public:
throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
private:
const sal_Char* implementationName;
-protected :
+protected:
#ifndef DISABLE_DYNLOADING
oslModule hModule;
oslGenericFunction SAL_CALL getFunctionBySymbol(const sal_Char* func);
@@ -135,7 +135,7 @@ public:
com::sun::star::lang::IllegalArgumentException,
com::sun::star::lang::NoSupportException, std::exception ) SAL_OVERRIDE;
-private :
+private:
// Hangul/Hanja system dictionary
com::sun::star::uno::Reference < com::sun::star::linguistic2::XConversionDictionary > xCD;
// Hangul/Hanja user defined dictionary list
@@ -190,7 +190,7 @@ public:
throw( com::sun::star::uno::RuntimeException,
com::sun::star::lang::IllegalArgumentException,
com::sun::star::lang::NoSupportException, std::exception ) SAL_OVERRIDE;
-private :
+private:
// user defined dictionary list
com::sun::star::uno::Reference < com::sun::star::linguistic2::XConversionDictionaryList > xCDL;
OUString SAL_CALL getWordConversion(const OUString& aText,
diff --git a/i18npool/inc/textconversionImpl.hxx b/i18npool/inc/textconversionImpl.hxx
index 1320f38b0c8e..93fdabfd4ddd 100644
--- a/i18npool/inc/textconversionImpl.hxx
+++ b/i18npool/inc/textconversionImpl.hxx
@@ -78,7 +78,7 @@ public:
com::sun::star::uno::Sequence< OUString > SAL_CALL
getSupportedServiceNames()
throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
-private :
+private:
com::sun::star::lang::Locale aLocale;
com::sun::star::uno::Reference < com::sun::star::i18n::XExtendedTextConversion > xTC;
com::sun::star::uno::Reference < com::sun::star::uno::XComponentContext > m_xContext;