summaryrefslogtreecommitdiff
path: root/editeng/source/misc
diff options
context:
space:
mode:
Diffstat (limited to 'editeng/source/misc')
-rw-r--r--editeng/source/misc/SvXMLAutoCorrectExport.hxx16
-rw-r--r--editeng/source/misc/SvXMLAutoCorrectImport.hxx8
-rw-r--r--editeng/source/misc/SvXMLAutoCorrectTokenHandler.hxx6
-rw-r--r--editeng/source/misc/unolingu.cxx26
4 files changed, 28 insertions, 28 deletions
diff --git a/editeng/source/misc/SvXMLAutoCorrectExport.hxx b/editeng/source/misc/SvXMLAutoCorrectExport.hxx
index a3b0d3259ed4..548b7c9a9faf 100644
--- a/editeng/source/misc/SvXMLAutoCorrectExport.hxx
+++ b/editeng/source/misc/SvXMLAutoCorrectExport.hxx
@@ -37,10 +37,10 @@ public:
css::uno::Reference< css::xml::sax::XDocumentHandler> &rHandler);
virtual ~SvXMLAutoCorrectExport() {}
- sal_uInt32 exportDoc(enum ::xmloff::token::XMLTokenEnum eClass) SAL_OVERRIDE;
- void _ExportAutoStyles() SAL_OVERRIDE {}
- void _ExportMasterStyles () SAL_OVERRIDE {}
- void _ExportContent() SAL_OVERRIDE {}
+ sal_uInt32 exportDoc(enum ::xmloff::token::XMLTokenEnum eClass) override;
+ void _ExportAutoStyles() override {}
+ void _ExportMasterStyles () override {}
+ void _ExportContent() override {}
};
class SvStringsISortDtor;
@@ -57,10 +57,10 @@ public:
css::uno::Reference< css::xml::sax::XDocumentHandler> &rHandler);
virtual ~SvXMLExceptionListExport() {}
- sal_uInt32 exportDoc(enum ::xmloff::token::XMLTokenEnum eClass) SAL_OVERRIDE;
- void _ExportAutoStyles() SAL_OVERRIDE {}
- void _ExportMasterStyles () SAL_OVERRIDE {}
- void _ExportContent() SAL_OVERRIDE {}
+ sal_uInt32 exportDoc(enum ::xmloff::token::XMLTokenEnum eClass) override;
+ void _ExportAutoStyles() override {}
+ void _ExportMasterStyles () override {}
+ void _ExportContent() override {}
};
#endif
diff --git a/editeng/source/misc/SvXMLAutoCorrectImport.hxx b/editeng/source/misc/SvXMLAutoCorrectImport.hxx
index 25be4584ffbd..b1432bd5d4c7 100644
--- a/editeng/source/misc/SvXMLAutoCorrectImport.hxx
+++ b/editeng/source/misc/SvXMLAutoCorrectImport.hxx
@@ -31,7 +31,7 @@ protected:
// This method is called after the namespace map has been updated, but
// before a context for the current element has been pushed.
virtual SvXMLImportContext *CreateFastContext( sal_Int32 Element,
- const css::uno::Reference< css::xml::sax::XFastAttributeList > & xAttrList ) SAL_OVERRIDE;
+ const css::uno::Reference< css::xml::sax::XFastAttributeList > & xAttrList ) override;
public:
SvxAutocorrWordList *pAutocorr_List;
@@ -57,7 +57,7 @@ public:
virtual css::uno::Reference<XFastContextHandler> SAL_CALL createFastChildContext( sal_Int32 Element,
const css::uno::Reference< css::xml::sax::XFastAttributeList > & xAttrList )
- throw (css::uno::RuntimeException, css::xml::sax::SAXException, std::exception) SAL_OVERRIDE;
+ throw (css::uno::RuntimeException, css::xml::sax::SAXException, std::exception) override;
virtual ~SvXMLWordListContext();
};
@@ -81,7 +81,7 @@ protected:
// This method is called after the namespace map has been updated, but
// before a context for the current element has been pushed.
virtual SvXMLImportContext *CreateFastContext( sal_Int32 Element, const css::uno::Reference<
- css::xml::sax::XFastAttributeList > & xAttrList ) SAL_OVERRIDE;
+ css::xml::sax::XFastAttributeList > & xAttrList ) override;
public:
SvStringsISortDtor &rList;
@@ -102,7 +102,7 @@ public:
virtual css::uno::Reference<XFastContextHandler> SAL_CALL createFastChildContext( sal_Int32 Element,
const css::uno::Reference< css::xml::sax::XFastAttributeList > & xAttrList )
- throw (css::uno::RuntimeException, css::xml::sax::SAXException, std::exception) SAL_OVERRIDE;
+ throw (css::uno::RuntimeException, css::xml::sax::SAXException, std::exception) override;
virtual ~SvXMLExceptionListContext();
};
diff --git a/editeng/source/misc/SvXMLAutoCorrectTokenHandler.hxx b/editeng/source/misc/SvXMLAutoCorrectTokenHandler.hxx
index 53456d117b95..66068e251be2 100644
--- a/editeng/source/misc/SvXMLAutoCorrectTokenHandler.hxx
+++ b/editeng/source/misc/SvXMLAutoCorrectTokenHandler.hxx
@@ -40,12 +40,12 @@ public:
//XFastTokenHandler
virtual sal_Int32 SAL_CALL getTokenFromUTF8( const css::uno::Sequence< sal_Int8 >& Identifier )
- throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (css::uno::RuntimeException, std::exception) override;
virtual css::uno::Sequence< sal_Int8 > SAL_CALL getUTF8Identifier( sal_Int32 Token )
- throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (css::uno::RuntimeException, std::exception) override;
// Much faster direct C++ shortcut to the method that matters
- virtual sal_Int32 getTokenDirect( const char *pToken, sal_Int32 nLength ) const SAL_OVERRIDE;
+ virtual sal_Int32 getTokenDirect( const char *pToken, sal_Int32 nLength ) const override;
};
#endif // EDITENG_SOURCE_MISC_SVXMLAUTOCORRECTTOKENHANDLER_HXX
diff --git a/editeng/source/misc/unolingu.cxx b/editeng/source/misc/unolingu.cxx
index 7a8fa910eba5..6eff02562de0 100644
--- a/editeng/source/misc/unolingu.cxx
+++ b/editeng/source/misc/unolingu.cxx
@@ -88,10 +88,10 @@ public:
// XSupportedLocales
virtual css::uno::Sequence< css::lang::Locale > SAL_CALL
getLocales()
- throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw(css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
hasLocale( const css::lang::Locale& rLocale )
- throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw(css::uno::RuntimeException, std::exception) override;
// XThesaurus
virtual css::uno::Sequence<
@@ -100,7 +100,7 @@ public:
const css::lang::Locale& rLocale,
const css::beans::PropertyValues& rProperties )
throw(css::lang::IllegalArgumentException,
- css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::uno::RuntimeException, std::exception) override;
};
@@ -213,22 +213,22 @@ public:
// XSupportedLanguages (for XSpellChecker1)
virtual css::uno::Sequence< sal_Int16 > SAL_CALL
getLanguages()
- throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw(css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
hasLanguage( sal_Int16 nLanguage )
- throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw(css::uno::RuntimeException, std::exception) override;
// XSpellChecker1 (same as XSpellChecker but sal_Int16 for language)
virtual sal_Bool SAL_CALL
isValid( const OUString& rWord, sal_Int16 nLanguage,
const css::beans::PropertyValues& rProperties )
throw(css::lang::IllegalArgumentException,
- css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::uno::RuntimeException, std::exception) override;
virtual css::uno::Reference< css::linguistic2::XSpellAlternatives > SAL_CALL
spell( const OUString& rWord, sal_Int16 nLanguage,
const css::beans::PropertyValues& rProperties )
throw(css::lang::IllegalArgumentException,
- css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::uno::RuntimeException, std::exception) override;
};
@@ -310,10 +310,10 @@ public:
virtual css::uno::Sequence<
css::lang::Locale > SAL_CALL
getLocales()
- throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw(css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
hasLocale( const css::lang::Locale& rLocale )
- throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw(css::uno::RuntimeException, std::exception) override;
// XHyphenator
virtual css::uno::Reference<
@@ -323,7 +323,7 @@ public:
sal_Int16 nMaxLeading,
const css::beans::PropertyValues& rProperties )
throw(css::lang::IllegalArgumentException,
- css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::uno::RuntimeException, std::exception) override;
virtual css::uno::Reference<
css::linguistic2::XHyphenatedWord > SAL_CALL
queryAlternativeSpelling( const OUString& rWord,
@@ -331,7 +331,7 @@ public:
sal_Int16 nIndex,
const css::beans::PropertyValues& rProperties )
throw(css::lang::IllegalArgumentException,
- css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::uno::RuntimeException, std::exception) override;
virtual css::uno::Reference<
css::linguistic2::XPossibleHyphens > SAL_CALL
createPossibleHyphens(
@@ -339,7 +339,7 @@ public:
const css::lang::Locale& rLocale,
const css::beans::PropertyValues& rProperties )
throw(css::lang::IllegalArgumentException,
- css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::uno::RuntimeException, std::exception) override;
};
@@ -438,7 +438,7 @@ public:
// lang::XEventListener
virtual void SAL_CALL disposing(const EventObject& rSource)
- throw( RuntimeException, std::exception ) SAL_OVERRIDE;
+ throw( RuntimeException, std::exception ) override;
};
LinguMgrExitLstnr::LinguMgrExitLstnr()