summaryrefslogtreecommitdiff
path: root/vcl/source/app
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-02-28 11:27:59 +0200
committerTor Lillqvist <tml@collabora.com>2014-02-28 11:28:06 +0200
commit5ce23eb9f12a52efcd7eb84d0b8ddc380d12eecb (patch)
tree1c89f50ead70b0bc9e6e4e28a95e78c02a013fe9 /vcl/source/app
parent381f8a5673b70e31fda2739da25f3863895ae665 (diff)
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
Diffstat (limited to 'vcl/source/app')
-rw-r--r--vcl/source/app/dbggui.cxx2
1 files changed, 1 insertions, 1 deletions
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 )
{