diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2018-12-05 22:20:49 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2018-12-09 09:18:51 +0100 |
commit | 51eeee9b3fc6ad58eb4ef8ffa6460148fb9f6e7e (patch) | |
tree | e7192184882560c911790461fc5bcec60c6902cc /vcl | |
parent | 543757b7258ad089f8c10a1afdf773602359c319 (diff) |
Fix typos in code
It passed "make check" on Linux
Change-Id: I8cfe93e58bb5a006d69ea7420b5f2aa07a0864c2
Reviewed-on: https://gerrit.libreoffice.org/64739
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/control/field.cxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/vcl/source/control/field.cxx b/vcl/source/control/field.cxx index 7e70ddb554f6..6801c0a7a5d8 100644 --- a/vcl/source/control/field.cxx +++ b/vcl/source/control/field.cxx @@ -58,7 +58,7 @@ sal_Int64 ImplPower10( sal_uInt16 n ) bool ImplNumericProcessKeyInput( const KeyEvent& rKEvt, bool bStrictFormat, bool bThousandSep, - const LocaleDataWrapper& rLocaleDataWrappper ) + const LocaleDataWrapper& rLocaleDataWrapper ) { if ( !bStrictFormat ) return false; @@ -71,15 +71,15 @@ bool ImplNumericProcessKeyInput( const KeyEvent& rKEvt, (nGroup == KEYGROUP_CURSOR) || (nGroup == KEYGROUP_MISC) || ((cChar >= '0') && (cChar <= '9')) || - string::equals(rLocaleDataWrappper.getNumDecimalSep(), cChar) || - (bThousandSep && string::equals(rLocaleDataWrappper.getNumThousandSep(), cChar)) || - string::equals(rLocaleDataWrappper.getNumDecimalSepAlt(), cChar) || + string::equals(rLocaleDataWrapper.getNumDecimalSep(), cChar) || + (bThousandSep && string::equals(rLocaleDataWrapper.getNumThousandSep(), cChar)) || + string::equals(rLocaleDataWrapper.getNumDecimalSepAlt(), cChar) || (cChar == '-')); } } bool ImplNumericGetValue( const OUString& rStr, sal_Int64& rValue, - sal_uInt16 nDecDigits, const LocaleDataWrapper& rLocaleDataWrappper, + sal_uInt16 nDecDigits, const LocaleDataWrapper& rLocaleDataWrapper, bool bCurrency = false ) { OUString aStr = rStr; @@ -98,9 +98,9 @@ bool ImplNumericGetValue( const OUString& rStr, sal_Int64& rValue, // find position of decimal point - nDecPos = aStr.indexOf( rLocaleDataWrappper.getNumDecimalSep() ); - if (nDecPos < 0 && !rLocaleDataWrappper.getNumDecimalSepAlt().isEmpty()) - nDecPos = aStr.indexOf( rLocaleDataWrappper.getNumDecimalSepAlt() ); + nDecPos = aStr.indexOf( rLocaleDataWrapper.getNumDecimalSep() ); + if (nDecPos < 0 && !rLocaleDataWrapper.getNumDecimalSepAlt().isEmpty()) + nDecPos = aStr.indexOf( rLocaleDataWrapper.getNumDecimalSepAlt() ); // find position of fraction nFracDivPos = aStr.indexOf( '/' ); @@ -154,7 +154,7 @@ bool ImplNumericGetValue( const OUString& rStr, sal_Int64& rValue, } if (!bNegative && !aStr.isEmpty()) { - sal_uInt16 nFormat = rLocaleDataWrappper.getCurrNegativeFormat(); + sal_uInt16 nFormat = rLocaleDataWrapper.getCurrNegativeFormat(); if ( (nFormat == 3) || (nFormat == 6) || // $1- || 1-$ (nFormat == 7) || (nFormat == 10) ) // 1$- || 1 $- { |