diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-01-29 17:13:27 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-01-29 17:13:27 +0000 |
commit | 36b0de1df5a6d5a541a001c5e6c9eeb60fd7d492 (patch) | |
tree | 2b30ee8963309f1de2ba5ca4365ffac2b95bde06 /extensions/source/plugin | |
parent | 498b5080cc0c5e81d23dbc2e3b3bbcef0fc534bc (diff) |
WaE: various new gcc 4.6.0 warnings
Diffstat (limited to 'extensions/source/plugin')
-rw-r--r-- | extensions/source/plugin/unx/npnapi.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/plugin/unx/npnapi.cxx b/extensions/source/plugin/unx/npnapi.cxx index d4cb19e3bce0..f50af7c1d5d3 100644 --- a/extensions/source/plugin/unx/npnapi.cxx +++ b/extensions/source/plugin/unx/npnapi.cxx @@ -704,7 +704,7 @@ IMPL_LINK( PluginConnector, WorkOnNewMessageHdl, Mediator*, /*pMediator*/ ) gtk_widget_show( pInst->pGtkWidget ); gtk_container_add( GTK_CONTAINER(pInst->pGtkWindow), pInst->pGtkWidget ); gtk_widget_show_all( pInst->pGtkWindow ); - pInst->window.window = (void *)gtk_socket_get_id( GTK_SOCKET(pInst->pGtkWidget ) ); + pInst->window.window = (void *)(sal_uIntPtr)gtk_socket_get_id( GTK_SOCKET(pInst->pGtkWidget ) ); XSync( pAppDisplay, False ); |