diff options
author | Oliver Bolte <obo@openoffice.org> | 2006-10-12 11:47:30 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2006-10-12 11:47:30 +0000 |
commit | fb7709f0dedc080011bcde04934d501b10ec3fb2 (patch) | |
tree | cf19a3723209f8ddda2386b3eb9e35b034d87a58 /svx/source/form/fmview.cxx | |
parent | 2d2edc665710e622fd413caacd4029225b9c3926 (diff) |
INTEGRATION: CWS sb59 (1.43.48); FILE MERGED
2006/08/29 14:46:41 sb 1.43.48.1: #i67535# Made code warning-free (GCC 4.1.1).
Diffstat (limited to 'svx/source/form/fmview.cxx')
-rw-r--r-- | svx/source/form/fmview.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/form/fmview.cxx b/svx/source/form/fmview.cxx index 2912c62ab038..60cfa10b2de6 100644 --- a/svx/source/form/fmview.cxx +++ b/svx/source/form/fmview.cxx @@ -4,9 +4,9 @@ * * $RCSfile: fmview.cxx,v $ * - * $Revision: 1.44 $ + * $Revision: 1.45 $ * - * last change: $Author: obo $ $Date: 2006-09-17 05:11:32 $ + * last change: $Author: obo $ $Date: 2006-10-12 12:47:30 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -777,9 +777,9 @@ BOOL FmFormView::KeyInput(const KeyEvent& rKEvt, Window* pWin) // ----------------------------------------------------------------------------- sal_Bool FmFormView::checkUnMarkAll(const Reference< XInterface >& _xSource) { - sal_Bool bRet = sal_False; Reference< ::com::sun::star::awt::XControl> xControl(pImpl->m_xWindow,UNO_QUERY); - if ( bRet = ( !xControl.is() || !_xSource.is() || _xSource != xControl->getModel() ) ) + sal_Bool bRet = !xControl.is() || !_xSource.is() || _xSource != xControl->getModel(); + if ( bRet ) UnmarkAll(); return bRet; |