diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-03-26 15:29:36 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-03-26 15:33:32 +0100 |
commit | be1e27271aad048414a530368fd0d534bca4c5e3 (patch) | |
tree | c3e4631eefe3b9067007449e1d3dd33f471e96b4 /l10ntools | |
parent | d3b69645d80a97f52a2e4a5dd5f9e321ffe5c7d6 (diff) |
const_cast: convert some C-style casts and remove some redundant ones
Change-Id: I0f8379517d8e97c24b32ca58749f1c0f2c7e8f49
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/source/xrmmerge.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/source/xrmmerge.cxx b/l10ntools/source/xrmmerge.cxx index 510fc1a099fa..421195d54e10 100644 --- a/l10ntools/source/xrmmerge.cxx +++ b/l10ntools/source/xrmmerge.cxx @@ -286,7 +286,7 @@ OString XRMResParser::GetAttribute( const OString &rToken, const OString &rAttri void XRMResParser::Error( const OString &rError ) { - yyerror(( char * ) rError.getStr()); + yyerror(rError.getStr()); } |