summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--filter/source/graphicfilter/ieps/ieps.cxx2
-rw-r--r--sal/osl/w32/nlsupport.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/filter/source/graphicfilter/ieps/ieps.cxx b/filter/source/graphicfilter/ieps/ieps.cxx
index de06d5dc8920..311bf8cb21a4 100644
--- a/filter/source/graphicfilter/ieps/ieps.cxx
+++ b/filter/source/graphicfilter/ieps/ieps.cxx
@@ -598,7 +598,7 @@ GraphicImport(SvStream & rStream, Graphic & rGraphic, FilterConfigItem*, sal_Boo
{
if ( nByte > '9' )
{
- nByte &=~0x20; // case none sensitive for hexadezimal values
+ nByte &=~0x20; // case none sensitive for hexadecimal values
nByte -= ( 'A' - 10 );
if ( nByte > 15 )
bIsValid = sal_False;
diff --git a/sal/osl/w32/nlsupport.c b/sal/osl/w32/nlsupport.c
index 04c63aa1bed9..175a8c6edee8 100644
--- a/sal/osl/w32/nlsupport.c
+++ b/sal/osl/w32/nlsupport.c
@@ -147,7 +147,7 @@ rtl_TextEncoding GetTextEncodingFromLCID( LCID localeId )
WCHAR *pwcEnd;
UINT codepage;
- /* values returned from GetLocaleInfo are dezimal based */
+ /* values returned from GetLocaleInfo are decimal based */
codepage = wcstol( ansiCP, &pwcEnd, 10 );
/* find matching rtl encoding */