Kaydet (Commit) 5aa8569b authored tarafından Caolán McNamara's avatar Caolán McNamara

unnecessary const cast

Change-Id: Ib88b8de40184b13cd7aa0ae4787e6b6477996d67
üst 4a1d52e7
...@@ -153,7 +153,7 @@ OString XBMReader::FindTokenLine( SvStream* pInStm, const char* pTok1, ...@@ -153,7 +153,7 @@ OString XBMReader::FindTokenLine( SvStream* pInStm, const char* pTok1,
long XBMReader::ParseDefine( const sal_Char* pDefine ) long XBMReader::ParseDefine( const sal_Char* pDefine )
{ {
long nRet = 0; long nRet = 0;
char* pTmp = const_cast<char*>(pDefine); const char* pTmp = pDefine;
unsigned char cTmp; unsigned char cTmp;
// move to end // move to end
......
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