diff options
author | Ocke Janssen <oj@openoffice.org> | 2001-07-30 05:20:24 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2001-07-30 05:20:24 +0000 |
commit | 0c64be51dfad607b0ddf4bac507b249b4730f285 (patch) | |
tree | 85050cf00caf6d3701f160c0c2fd8b451bb3dddc | |
parent | 1147f346707741f11225efe14ac35dd3154ee6c7 (diff) |
#90291# check if table should be appended
-rw-r--r-- | dbaccess/source/ui/browser/dsbrowserDnD.cxx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/dbaccess/source/ui/browser/dsbrowserDnD.cxx b/dbaccess/source/ui/browser/dsbrowserDnD.cxx index 8de04a0de2a1..6d688b0b1f36 100644 --- a/dbaccess/source/ui/browser/dsbrowserDnD.cxx +++ b/dbaccess/source/ui/browser/dsbrowserDnD.cxx @@ -2,9 +2,9 @@ * * $RCSfile: dsbrowserDnD.cxx,v $ * - * $Revision: 1.24 $ + * $Revision: 1.25 $ * - * last change: $Author: oj $ $Date: 2001-07-26 14:12:01 $ + * last change: $Author: oj $ $Date: 2001-07-30 06:20:24 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -464,7 +464,8 @@ namespace dbaui } case OCopyTableWizard::WIZARD_APPEND_DATA: { - xTable = aWizard.createTable(); + if(!xTable.is()) + xTable = aWizard.createTable(); if(!xTable.is()) break; @@ -1085,6 +1086,9 @@ namespace dbaui /************************************************************************* * history: * $Log: not supported by cvs2svn $ + * Revision 1.24 2001/07/26 14:12:01 oj + * #90291# check if table should be appended + * * Revision 1.23 2001/07/19 09:27:12 oj * #86186# check parsetree for joins * |