diff options
author | Johannes Schickel | 2010-06-15 17:14:02 +0000 |
---|---|---|
committer | Johannes Schickel | 2010-06-15 17:14:02 +0000 |
commit | c09af1dcae051220f896002ca10877dc8eac76dd (patch) | |
tree | 981ad03e246b6c78a90394f58188f084b2b00885 /common | |
parent | 0d7c8071cc8baed030d5f25203982e0613440412 (diff) | |
download | scummvm-rg350-c09af1dcae051220f896002ca10877dc8eac76dd.tar.gz scummvm-rg350-c09af1dcae051220f896002ca10877dc8eac76dd.tar.bz2 scummvm-rg350-c09af1dcae051220f896002ca10877dc8eac76dd.zip |
Some style fixes.
svn-id: r49869
Diffstat (limited to 'common')
-rwxr-xr-x | common/translation.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/translation.cpp b/common/translation.cpp index 7dfb3fcc8e..0b3d1237a9 100755 --- a/common/translation.cpp +++ b/common/translation.cpp @@ -78,7 +78,7 @@ TranslationManager::~TranslationManager() { #ifdef TERMCONV iconv_close(_conversion); if (_convmsg) - delete [] _convmsg; + delete[] _convmsg; #endif // TERMCONV } @@ -136,7 +136,7 @@ bool TranslationManager::convert(const char *message) { // Do the real conversion size_t result = iconv(_conversion, pmsg, &len, pconv, &len2); - delete [] msgcpy; + delete[] msgcpy; return result != ((size_t)-1); } @@ -152,7 +152,7 @@ const char *TranslationManager::convertTerm(const char *message) { if (!convert(message)) { // Resizing the buffer - delete [] _convmsg; + delete[] _convmsg; _sizeconv = len * 2; _convmsg = new char[_sizeconv]; |