diff options
author | Kurt Zenker <kz@openoffice.org> | 2009-01-29 10:02:54 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2009-01-29 10:02:54 +0000 |
commit | 25dad84813feb405e709c31b180361dc1b7cfaaa (patch) | |
tree | 764c39b2ec2f74b33e8f50129525f5c24b9f67c0 /desktop | |
parent | 7deeb2a401b108ac176c4670b6674bfabfcef63c (diff) |
CWS-TOOLING: integrate CWS cmcfixes52
2009-01-05 10:49:04 +0100 cmc r265860 : #i97763# remove low-hanging warnings
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx b/desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx index c8ad2d98078b..c779e7a7a2fe 100644 --- a/desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx +++ b/desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx @@ -438,7 +438,7 @@ void ProgressCmdEnv::handle( uno::Reference< task::XInteractionRequest > const & // Distinguish between closing the dialog and programatically // canceling the dialog (headless VCL): approve = n == RET_OK - || n == RET_CANCEL && !Application::IsDialogCancelEnabled(); + || (n == RET_CANCEL && !Application::IsDialogCancelEnabled()); } } else if (request >>= licAgreementExc) |