diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-14 20:39:11 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-14 21:28:06 +0100 |
commit | 67afa78a4b4b815a798a5915a409a2ade9b67cf5 (patch) | |
tree | dec8fb85dd6673a9070f1ffac996e254b6f5a17d /dbaccess | |
parent | 7700d10eee335256815763d4f8d4fb91ddab9cd2 (diff) |
bool improvements
Change-Id: Ie957ab2b63facc15a990f22347ce2393f6bb6a44
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/app/AppControllerDnD.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/app/AppControllerDnD.cxx b/dbaccess/source/ui/app/AppControllerDnD.cxx index f4d65fc86c5d..104984a04a4a 100644 --- a/dbaccess/source/ui/app/AppControllerDnD.cxx +++ b/dbaccess/source/ui/app/AppControllerDnD.cxx @@ -501,7 +501,7 @@ SAL_WNODEPRECATED_DECLARATIONS_PUSH SharedConnection xConnection( ensureConnection() ); Reference< XNameAccess > xDocContainer; - if ( ( _eType == E_FORM ) | ( _eType == E_REPORT ) ) + if ( ( _eType == E_FORM ) || ( _eType == E_REPORT ) ) { xDocContainer.set( getElements( _eType ) ); OSL_ENSURE( xDocContainer.is(), "OApplicationController::getDocumentsAccess: invalid container!" ); |