summaryrefslogtreecommitdiffstats
path: root/filter/source/t602/t602filter.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'filter/source/t602/t602filter.cxx')
-rw-r--r--filter/source/t602/t602filter.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/source/t602/t602filter.cxx b/filter/source/t602/t602filter.cxx
index 2e3d82cfc7e7..bcaf8984d370 100644
--- a/filter/source/t602/t602filter.cxx
+++ b/filter/source/t602/t602filter.cxx
@@ -545,7 +545,7 @@ unsigned char T602ImportFilter::Readchar602()
static Sequence< sal_Int8 > aData;
return (mxInputStream->readBytes(aData, 1) > 0) ?
- ((unsigned char *) aData.getConstArray())[0] : 0;
+ reinterpret_cast<unsigned char const *>(aData.getConstArray())[0] : 0;
}
void T602ImportFilter::par602(bool endofpage)
@@ -607,7 +607,7 @@ sal_Int16 T602ImportFilter::readnum(unsigned char *ch, bool show)
buff[i]='\0';
// mba: cast from unsigned char via int to sal_Int16 seems to be safe
- return (sal_Int16) atoi((char *)buff);
+ return (sal_Int16) atoi(reinterpret_cast<char const *>(buff));
}
unsigned char T602ImportFilter::Setformat602(char *cmd)