diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-10-04 12:34:30 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-10-04 15:05:04 +0200 |
commit | be62c01287c095c22a83ecfe6f9f45874f6e56f8 (patch) | |
tree | ee40a7558322b4627a564f69dfb92e4c8401bea0 /vcl | |
parent | 80697835719c5220c68608954ade949b5a7ed503 (diff) |
fdo#39674 fix some spelling
Change-Id: I72e497fb97edf8782c69000576f42896594e1556
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/control/field2.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/control/field2.cxx b/vcl/source/control/field2.cxx index 6a261064a4de..fa3fee23d5cb 100644 --- a/vcl/source/control/field2.cxx +++ b/vcl/source/control/field2.cxx @@ -222,7 +222,7 @@ static sal_Unicode ImplPatternChar( sal_Unicode cChar, sal_Char cEditMask ) // ----------------------------------------------------------------------- -static int ImplKommaPointCharEqual( sal_Unicode c1, sal_Unicode c2 ) +static int ImplCommaPointCharEqual( sal_Unicode c1, sal_Unicode c2 ) { if ( c1 == c2 ) return sal_True; @@ -267,7 +267,7 @@ static OUString ImplPatternReformat( const OUString& rStr, { // if it is a literal copy otherwise ignore because it might be the next valid // character of the string - if ( ImplKommaPointCharEqual( cChar, cLiteral ) ) + if ( ImplCommaPointCharEqual( cChar, cLiteral ) ) nStrIndex++; else { @@ -313,7 +313,7 @@ static OUString ImplPatternReformat( const OUString& rStr, { if ( rEditMask[n] == EDITMASK_LITERAL ) { - if ( ImplKommaPointCharEqual( cChar, rLiteralMask[n] ) ) + if ( ImplCommaPointCharEqual( cChar, rLiteralMask[n] ) ) i = n+1; break; @@ -655,7 +655,7 @@ static bool ImplPatternProcessKeyInput( Edit* pEdit, const KeyEvent& rKEvt, { // only valid if no literal present if ( (rEditMask[nTempPos+1] != EDITMASK_LITERAL ) && - ImplKommaPointCharEqual( cChar, rLiteralMask[nTempPos] ) ) + ImplCommaPointCharEqual( cChar, rLiteralMask[nTempPos] ) ) { nTempPos++; ImplPatternMaxPos( pEdit->GetText(), rEditMask, nFormatFlags, bSameMask, nNewPos, nTempPos ); |