summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2014-05-04 23:14:29 +0200
committerJulien Nabet <serval2412@yahoo.fr>2014-05-04 23:14:29 +0200
commitc19c942ccf1c40463c5730ad5507f53e40cedab1 (patch)
tree0cf4a68b1f80181f4414fb6d8e0a95f9291f17a3
parentd6c42a503fb4237d5aa86eece3bf1fc1fba87a4b (diff)
Typo: depricated->deprecated
Change-Id: I77fe282a9dcebde5ad7684aee4597fe4cfb07e11
-rw-r--r--include/editeng/outliner.hxx2
-rw-r--r--include/osl/process.h2
-rw-r--r--include/svl/zforlist.hxx2
-rw-r--r--include/unotools/charclass.hxx2
-rw-r--r--toolkit/test/accessibility/AccessibleExtendedComponentHandler.java4
5 files changed, 6 insertions, 6 deletions
diff --git a/include/editeng/outliner.hxx b/include/editeng/outliner.hxx
index 3240b7229b3d..bcf1791f83f8 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 44a580fec5d9..7d0960ee3f7f 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 a64eaecd8af5..8d567184f4b6 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 4cfcb36e49bd..e35a423b27ea 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 6bfbc48ef391..fe0bb855ed7d 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)