diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-05-11 12:51:33 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-05-11 12:51:33 +0200 |
commit | a71478d8ba7347f41c20585c56e1d5283757f82e (patch) | |
tree | 3b8f13526ce899687775147ec0a6fdf2f062d71f /vcl/unx/generic/app | |
parent | 4a1eddb6d7d27030b119cef147147d77c9a3ff5f (diff) |
loplugin:cstylecast: nop between pointer types of exactly same spelling
Change-Id: I0f844c7265b52d668bc6a2368321950a1a00cce5
Diffstat (limited to 'vcl/unx/generic/app')
-rw-r--r-- | vcl/unx/generic/app/i18n_xkb.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/generic/app/i18n_xkb.cxx b/vcl/unx/generic/app/i18n_xkb.cxx index cfc3bef7f3be..f9618f4d9826 100644 --- a/vcl/unx/generic/app/i18n_xkb.cxx +++ b/vcl/unx/generic/app/i18n_xkb.cxx @@ -57,7 +57,7 @@ SalI18N_KeyboardExtension::SalI18N_KeyboardExtension( Display* pDisplay ) int nExtMinorVersion = XkbMinorVersion; mbUseExtension = XkbQueryExtension( mpDisplay, - &nMajorExtOpcode, (int*)&mnEventBase, (int*)&mnErrorBase, + &nMajorExtOpcode, &mnEventBase, &mnErrorBase, &nExtMajorVersion, &nExtMinorVersion ) != 0; } |