diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-03-28 19:05:09 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-03-28 19:09:23 +0100 |
commit | 1baf49d146d4cc870bf095fd1498339d18ef97b6 (patch) | |
tree | 8dbc95e2b70545843142f3a02d05875f52608882 /linguistic | |
parent | 9afd58e71aea495f2f04abec8754ed7355dbf386 (diff) |
Clean up C-style casts from pointers to void
Change-Id: I9159db9b8fdbabefe29bcc606ec27c1709a620dd
Diffstat (limited to 'linguistic')
-rw-r--r-- | linguistic/source/gciterator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linguistic/source/gciterator.cxx b/linguistic/source/gciterator.cxx index cefe6805ad44..9d84b09ddcf1 100644 --- a/linguistic/source/gciterator.cxx +++ b/linguistic/source/gciterator.cxx @@ -225,7 +225,7 @@ extern "C" void lcl_workerfunc (void * gci) { osl_setThreadName("GrammarCheckingIterator"); - ((GrammarCheckingIterator*)gci)->DequeueAndCheck(); + static_cast<GrammarCheckingIterator*>(gci)->DequeueAndCheck(); } static lang::Locale lcl_GetPrimaryLanguageOfSentence( |