diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-12-04 23:54:40 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-12-05 09:10:05 +0100 |
commit | fb3fc60a349f4bf45c772fdd8d00ca2fd2131551 (patch) | |
tree | f52a669d48382a1b5b4e26038a16c4b15709dcd6 /vcl/unx/gtk | |
parent | cee5bd8d52f3ff0334837b5581e8ad84daadd3e6 (diff) |
loplugin:cstylecast, involving pointer to incomplete type
Change-Id: If2758fa42b484a5afbe0d358a3d4533c68189697
Diffstat (limited to 'vcl/unx/gtk')
-rw-r--r-- | vcl/unx/gtk/window/gtksalframe.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/gtk/window/gtksalframe.cxx b/vcl/unx/gtk/window/gtksalframe.cxx index c7c8024ac03a..6f3688321278 100644 --- a/vcl/unx/gtk/window/gtksalframe.cxx +++ b/vcl/unx/gtk/window/gtksalframe.cxx @@ -669,7 +669,7 @@ gboolean ensure_dbus_setup( gpointer data ) // Create menu model and action group attached to this frame. GMenuModel* pMenuModel = G_MENU_MODEL( g_lo_menu_new() ); - GActionGroup* pActionGroup = ( ( GActionGroup* ) g_lo_action_group_new( reinterpret_cast< gpointer >( pSalFrame ) ) ); + GActionGroup* pActionGroup = reinterpret_cast<GActionGroup*>(g_lo_action_group_new( reinterpret_cast< gpointer >( pSalFrame ) )); // Generate menu paths. ::Window windowId = GDK_WINDOW_XID( gdkWindow ); |