From 5ce23eb9f12a52efcd7eb84d0b8ddc380d12eecb Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Fri, 28 Feb 2014 11:27:59 +0200 Subject: WaE: implicit conversion (IntegralCast) from bool to 'long' Presumably RET_OK is what is meant here (that is how the code has worked, anyway, as RET_OK == 1 == sal_True). Change-Id: Ib6afffc606c6bc36b5ef4cf04991207c8c109973 --- vcl/source/app/dbggui.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vcl') diff --git a/vcl/source/app/dbggui.cxx b/vcl/source/app/dbggui.cxx index 1eab532d4d1a..d13dc81a2d59 100644 --- a/vcl/source/app/dbggui.cxx +++ b/vcl/source/app/dbggui.cxx @@ -973,7 +973,7 @@ IMPL_LINK( DbgDialog, ClickHdl, Button*, pButton ) ) ); aBox.Execute(); } - EndDialog( true ); + EndDialog( RET_OK ); } else if ( pButton == &maInfoButton ) { -- cgit