diff options
author | Oliver Specht <os@openoffice.org> | 2001-01-10 15:34:15 +0000 |
---|---|---|
committer | Oliver Specht <os@openoffice.org> | 2001-01-10 15:34:15 +0000 |
commit | 277e2262d245dc40722593d9f0002ddc31a8d21c (patch) | |
tree | d44b91d7362f1c7d5ee5c723cdacdf63ee457227 /sw | |
parent | a7544218c148734fe247e16d67fca525e44d5896 (diff) |
#82640# GPF in OpenDataSource disposed
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/dbui/dbmgr.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/ui/dbui/dbmgr.cxx b/sw/source/ui/dbui/dbmgr.cxx index 0d67d6f7bacb..82f48f91ac74 100644 --- a/sw/source/ui/dbui/dbmgr.cxx +++ b/sw/source/ui/dbui/dbmgr.cxx @@ -2,9 +2,9 @@ * * $RCSfile: dbmgr.cxx,v $ * - * $Revision: 1.16 $ + * $Revision: 1.17 $ * - * last change: $Author: os $ $Date: 2000-12-21 14:38:05 $ + * last change: $Author: os $ $Date: 2001-01-10 16:34:15 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -2003,8 +2003,8 @@ BOOL SwNewDBMgr::OpenDataSource(const String& rDataSource, const String& rTableO } else { - pFound->bEndOfDB = !pMergeData->xResultSet->next(); - ++pMergeData->nSelectionIndex; + pFound->bEndOfDB = !pFound->xResultSet->next(); + ++pFound->nSelectionIndex; } } catch (Exception&) |