diff options
author | Oliver Bolte <obo@openoffice.org> | 2008-03-10 11:44:52 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2008-03-10 11:44:52 +0000 |
commit | 2b444505a481c19bf94130834ea9ead92fbf265b (patch) | |
tree | d13ed3bf8183beab075c4804968bda5a8d11cffa /dbaccess/source/ext/macromigration | |
parent | 47e35e23345650cfb6d74a17334781c118ee53d0 (diff) |
#i10000# bAlreadyKnown declared twice
Diffstat (limited to 'dbaccess/source/ext/macromigration')
-rw-r--r-- | dbaccess/source/ext/macromigration/migrationlog.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ext/macromigration/migrationlog.cxx b/dbaccess/source/ext/macromigration/migrationlog.cxx index 627419c973d2..326d8ee7d532 100644 --- a/dbaccess/source/ext/macromigration/migrationlog.cxx +++ b/dbaccess/source/ext/macromigration/migrationlog.cxx @@ -4,9 +4,9 @@ * * $RCSfile: migrationlog.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: kz $ $Date: 2008-03-06 18:05:24 $ + * last change: $Author: obo $ $Date: 2008-03-10 12:44:52 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -151,7 +151,7 @@ namespace dbmm ++doc ) { - bool bAlreadyKnown = ( doc->second.eType == _eType ) && ( doc->second.sName == _rName ); + bAlreadyKnown = ( doc->second.eType == _eType ) && ( doc->second.sName == _rName ); } OSL_ENSURE( !bAlreadyKnown, "MigrationLog::startedDocument: document is already known!" ); #endif |