Typo: depricated->deprecated
Change-Id: I77fe282a9dcebde5ad7684aee4597fe4cfb07e11
diff --git a/include/editeng/outliner.hxx b/include/editeng/outliner.hxx
index 3240b72..bcf1791 100644
--- a/include/editeng/outliner.hxx
+++ b/include/editeng/outliner.hxx
@@ -926,7 +926,7 @@ public:
void SetForbiddenCharsTable( rtl::Reference<SvxForbiddenCharactersTable> xForbiddenChars );
// Depricated
// Deprecated
void SetDefaultLanguage( LanguageType eLang );
LanguageType GetDefaultLanguage() const;
diff --git a/include/osl/process.h b/include/osl/process.h
index 44a580f..7d0960e 100644
--- a/include/osl/process.h
+++ b/include/osl/process.h
@@ -368,7 +368,7 @@ SAL_DLLPUBLIC oslProcessError SAL_CALL osl_getCommandArg(
/** Set the command-line arguments as passed to the main-function of this process.
Depricated: This function is only for internal use. Passing the args from main will
Deprecated: This function is only for internal use. Passing the args from main will
only work for Unix, on Windows there's no effect, the full command line will automtically
be taken. This is due to Windows 9x/ME limitation that don't allow UTF-16 wmain to provide
a osl_setCommandArgsU( int argc, sal_Unicode **argv );
diff --git a/include/svl/zforlist.hxx b/include/svl/zforlist.hxx
index a64eaec..8d56718 100644
--- a/include/svl/zforlist.hxx
+++ b/include/svl/zforlist.hxx
@@ -641,7 +641,7 @@ public:
sal_uInt16 ExpandTwoDigitYear( sal_uInt16 nYear ) const;
inline static sal_uInt16 ExpandTwoDigitYear( sal_uInt16 nYear, sal_uInt16 nTwoDigitYearStart );
/// DEPRICATED: Return first character of the decimal separator of the current language/country
/// DEPRECATED: Return first character of the decimal separator of the current language/country
sal_Unicode GetDecSep() const { return GetNumDecimalSep()[0]; }
/// Return the decimal separator of the current language/country
OUString GetDecimalSep() const { return GetNumDecimalSep(); }
diff --git a/include/unotools/charclass.hxx b/include/unotools/charclass.hxx
index 4cfcb36..e35a423 100644
--- a/include/unotools/charclass.hxx
+++ b/include/unotools/charclass.hxx
@@ -76,7 +76,7 @@ public:
const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > & rxContext,
const LanguageTag& rLanguageTag );
/// Depricated ctor, tries to get a process service manager or to load the
/// Deprecated ctor, tries to get a process service manager or to load the
/// library directly.
CharClass( const LanguageTag& rLanguageTag );
diff --git a/toolkit/test/accessibility/AccessibleExtendedComponentHandler.java b/toolkit/test/accessibility/AccessibleExtendedComponentHandler.java
index 6bfbc48..fe0bb85 100644
--- a/toolkit/test/accessibility/AccessibleExtendedComponentHandler.java
+++ b/toolkit/test/accessibility/AccessibleExtendedComponentHandler.java
@@ -67,7 +67,7 @@ class AccessibleExtendedComponentHandler
{
case 0:
nColor = xEComponent.getForeground();
aChild = new StringNode ("Depricated Foreground color: R"
aChild = new StringNode ("Deprecated Foreground color: R"
+ (nColor>>16&0xff)
+ "G" + (nColor>>8&0xff)
+ "B" + (nColor>>0&0xff)
@@ -76,7 +76,7 @@ class AccessibleExtendedComponentHandler
break;
case 1:
nColor = xEComponent.getBackground();
aChild = new StringNode ("Depricated Background color: R"
aChild = new StringNode ("Deprecated Background color: R"
+ (nColor>>16&0xff)
+ "G" + (nColor>>8&0xff)
+ "B" + (nColor>>0&0xff)