diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-02-28 12:09:00 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-02-28 12:09:00 +0200 |
commit | 74c17d618759759e2ba532e09d36f4e34bca957d (patch) | |
tree | df8cd91f7f886e68b4ba9b6159178acf07fec4a3 /vcl/source | |
parent | c005d07dbcea821ff620826090ca146d39788528 (diff) |
WaE: implicit conversion (IntegralCast) from bool to 'long'
Change-Id: I065858bdacf88f87eabe6cec516f6357acc11152
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/window/toolbox.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/toolbox.cxx b/vcl/source/window/toolbox.cxx index b43dd8453e75..f74950946f9a 100644 --- a/vcl/source/window/toolbox.cxx +++ b/vcl/source/window/toolbox.cxx @@ -1412,7 +1412,7 @@ IMPL_LINK( ImplTBDragMgr, SelectHdl, Accelerator*, pAccel ) else EndDragging( true ); - return true; + return (long) true; } |