Kaydet (Commit) c19c942c authored tarafından Julien Nabet's avatar Julien Nabet

Typo: depricated->deprecated

Change-Id: I77fe282a9dcebde5ad7684aee4597fe4cfb07e11
üst d6c42a50
...@@ -926,7 +926,7 @@ public: ...@@ -926,7 +926,7 @@ public:
void SetForbiddenCharsTable( rtl::Reference<SvxForbiddenCharactersTable> xForbiddenChars ); void SetForbiddenCharsTable( rtl::Reference<SvxForbiddenCharactersTable> xForbiddenChars );
// Depricated // Deprecated
void SetDefaultLanguage( LanguageType eLang ); void SetDefaultLanguage( LanguageType eLang );
LanguageType GetDefaultLanguage() const; LanguageType GetDefaultLanguage() const;
......
...@@ -368,7 +368,7 @@ SAL_DLLPUBLIC oslProcessError SAL_CALL osl_getCommandArg( ...@@ -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. /** 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 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 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 ); a osl_setCommandArgsU( int argc, sal_Unicode **argv );
......
...@@ -641,7 +641,7 @@ public: ...@@ -641,7 +641,7 @@ public:
sal_uInt16 ExpandTwoDigitYear( sal_uInt16 nYear ) const; sal_uInt16 ExpandTwoDigitYear( sal_uInt16 nYear ) const;
inline static sal_uInt16 ExpandTwoDigitYear( sal_uInt16 nYear, sal_uInt16 nTwoDigitYearStart ); 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]; } sal_Unicode GetDecSep() const { return GetNumDecimalSep()[0]; }
/// Return the decimal separator of the current language/country /// Return the decimal separator of the current language/country
OUString GetDecimalSep() const { return GetNumDecimalSep(); } OUString GetDecimalSep() const { return GetNumDecimalSep(); }
......
...@@ -76,7 +76,7 @@ public: ...@@ -76,7 +76,7 @@ public:
const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > & rxContext, const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > & rxContext,
const LanguageTag& rLanguageTag ); 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. /// library directly.
CharClass( const LanguageTag& rLanguageTag ); CharClass( const LanguageTag& rLanguageTag );
......
...@@ -67,7 +67,7 @@ class AccessibleExtendedComponentHandler ...@@ -67,7 +67,7 @@ class AccessibleExtendedComponentHandler
{ {
case 0: case 0:
nColor = xEComponent.getForeground(); nColor = xEComponent.getForeground();
aChild = new StringNode ("Depricated Foreground color: R" aChild = new StringNode ("Deprecated Foreground color: R"
+ (nColor>>16&0xff) + (nColor>>16&0xff)
+ "G" + (nColor>>8&0xff) + "G" + (nColor>>8&0xff)
+ "B" + (nColor>>0&0xff) + "B" + (nColor>>0&0xff)
...@@ -76,7 +76,7 @@ class AccessibleExtendedComponentHandler ...@@ -76,7 +76,7 @@ class AccessibleExtendedComponentHandler
break; break;
case 1: case 1:
nColor = xEComponent.getBackground(); nColor = xEComponent.getBackground();
aChild = new StringNode ("Depricated Background color: R" aChild = new StringNode ("Deprecated Background color: R"
+ (nColor>>16&0xff) + (nColor>>16&0xff)
+ "G" + (nColor>>8&0xff) + "G" + (nColor>>8&0xff)
+ "B" + (nColor>>0&0xff) + "B" + (nColor>>0&0xff)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment