diff options
author | David Tardon <dtardon@redhat.com> | 2012-03-07 19:27:10 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-03-12 08:53:24 +0100 |
commit | 33aa774406f8ae683006c5c59e8d628f371b2bc3 (patch) | |
tree | 46b026e38347cf815664fd1ba5cb07af25ae365e /svl | |
parent | 0ae7f9da0c0454d6b78a775bb80ad267aa82da13 (diff) |
WaE: cast to pointer from integer of different size
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/svdde/ddecli.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/svl/source/svdde/ddecli.cxx b/svl/source/svdde/ddecli.cxx index fd7b09c6d7fa..dccb86d56fd9 100644 --- a/svl/source/svdde/ddecli.cxx +++ b/svl/source/svdde/ddecli.cxx @@ -371,7 +371,8 @@ void DdeTransaction::Data( const DdeData* p ) void DdeTransaction::Done( sal_Bool bDataValid ) { - aDone.Call( (void*)bDataValid ); + const sal_uIntPtr nDataValid(bDataValid); + aDone.Call( reinterpret_cast<void*>(nDataValid) ); } // --- DdeLink::DdeLink() ------------------------------------------ |