From 0c64be51dfad607b0ddf4bac507b249b4730f285 Mon Sep 17 00:00:00 2001 From: Ocke Janssen Date: Mon, 30 Jul 2001 05:20:24 +0000 Subject: #90291# check if table should be appended --- dbaccess/source/ui/browser/dsbrowserDnD.cxx | 10 +++++++--- 1 file 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 * -- cgit