From d8bbe0ede2d5f07a92772dfa04ace97751128005 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 14 Jan 2014 20:35:20 +0100 Subject: EndDialog takes long nResult, not bool Change-Id: Ic6283b7a71a5d1c539ae99155f448e34e877080a --- desktop/source/deployment/gui/license_dialog.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'desktop') diff --git a/desktop/source/deployment/gui/license_dialog.cxx b/desktop/source/deployment/gui/license_dialog.cxx index da65564477b8..f67566164653 100644 --- a/desktop/source/deployment/gui/license_dialog.cxx +++ b/desktop/source/deployment/gui/license_dialog.cxx @@ -225,13 +225,13 @@ LicenseDialogImpl::LicenseDialogImpl( IMPL_LINK_NOARG(LicenseDialogImpl, AcceptHdl) { - EndDialog(true); + EndDialog(RET_OK); return 0; } IMPL_LINK_NOARG(LicenseDialogImpl, CancelHdl) { - EndDialog(false); + EndDialog(RET_CANCEL); return 0; } -- cgit